remvoe stream eventns form chapters
This commit is contained in:
parent
9d0ff33cfc
commit
3bb68af01d
6 changed files with 5 additions and 76 deletions
2
front/dist/index.html
vendored
2
front/dist/index.html
vendored
|
|
@ -1 +1 @@
|
||||||
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>ChattyPub</title><link href="/css/app.8d54a806.css" rel="preload" as="style"><link href="/css/chunk-vendors.0a40a1e1.css" rel="preload" as="style"><link href="/js/app.43e3dc5f.js" rel="preload" as="script"><link href="/js/chunk-vendors.3f6eac01.js" rel="preload" as="script"><link href="/css/chunk-vendors.0a40a1e1.css" rel="stylesheet"><link href="/css/app.8d54a806.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but Chattypub doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/js/chunk-vendors.3f6eac01.js"></script><script src="/js/app.43e3dc5f.js"></script></body></html>
|
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>ChattyPub</title><link href="/css/app.8d54a806.css" rel="preload" as="style"><link href="/css/chunk-vendors.0a40a1e1.css" rel="preload" as="style"><link href="/js/app.d5a930f9.js" rel="preload" as="script"><link href="/js/chunk-vendors.52e09c35.js" rel="preload" as="script"><link href="/css/chunk-vendors.0a40a1e1.css" rel="stylesheet"><link href="/css/app.8d54a806.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but Chattypub doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/js/chunk-vendors.52e09c35.js"></script><script src="/js/app.d5a930f9.js"></script></body></html>
|
||||||
2
front/dist/js/app.43e3dc5f.js
vendored
2
front/dist/js/app.43e3dc5f.js
vendored
File diff suppressed because one or more lines are too long
1
front/dist/js/app.43e3dc5f.js.map
vendored
1
front/dist/js/app.43e3dc5f.js.map
vendored
File diff suppressed because one or more lines are too long
70
front/dist/js/chunk-vendors.3f6eac01.js
vendored
70
front/dist/js/chunk-vendors.3f6eac01.js
vendored
File diff suppressed because one or more lines are too long
1
front/dist/js/chunk-vendors.3f6eac01.js.map
vendored
1
front/dist/js/chunk-vendors.3f6eac01.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -206,7 +206,10 @@ export default createStore({
|
||||||
sortedTopics: state => (
|
sortedTopics: state => (
|
||||||
[...state.topics]
|
[...state.topics]
|
||||||
.sort((a, b) => a.title.localeCompare(b.title))
|
.sort((a, b) => a.title.localeCompare(b.title))
|
||||||
.filter(t => t.messages.length > 0)
|
.filter(t => (
|
||||||
|
t.messages.length > 0 &&
|
||||||
|
t.title != 'stream events'
|
||||||
|
))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue