diff options
| author | lambda <pleromagit@rogerbraun.net> | 2018-02-02 07:31:17 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2018-02-02 07:31:17 +0000 |
| commit | 8010c42768b3436df93c489ab971b2574c7a8f6b (patch) | |
| tree | 91d180cef8ba6c92b149f1bf2078b457942681bc /src/App.js | |
| parent | 97854eec58601c66b1fa24109f8c7324f87bc98a (diff) | |
| parent | 043e14d5cb929fca35b8d55c9008498146e90b8b (diff) | |
Merge branch 'fix/chat-visibility' into 'develop'
Show chat only if channel is joined.
See merge request pleroma/pleroma-fe!197
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ export default { logoStyle () { return { 'background-image': `url(${this.$store.state.config.logo})` } }, style () { return { 'background-image': `url(${this.background})` } }, sitename () { return this.$store.state.config.name }, - chat () { return this.$store.state.chat.channel } + chat () { return this.$store.state.chat.channel.state === 'joined' } }, methods: { activatePanel (panelName) { |
