Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-01-09 22:15:24 +0300
committerGitHub <noreply@github.com>2020-01-09 22:15:24 +0300
commited5a5e9ccb60f061ebe2546a72d76d8b42a4efb0 (patch)
treeec88a69c1362b82c0731238ce7b3575652e80415 /src
parente119bd8d661fa05d7ade8467fa40851f2c050112 (diff)
parent9b7d5eb33c0fcec0d8268961519ffb6c35f0f047 (diff)
Merge pull request #2707 from nextcloud/bugfix/noid/fix-chat-tab
Correctly register the chat tab
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/RightSidebar.vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue
index 6f54c1d39..10ae4d655 100644
--- a/src/components/RightSidebar/RightSidebar.vue
+++ b/src/components/RightSidebar/RightSidebar.vue
@@ -61,14 +61,11 @@
</ActionInput>
</template>
<AppSidebarTab
+ v-if="showChatInSidebar"
:order="1"
:name="t('spreed', 'Chat')"
icon="icon-comment">
- <ChatView v-if="showChatInSidebar" :token="token" />
- <template v-else>
- This should be hidden, but the visibility of the tab can not change at the moment:
- https://github.com/nextcloud/nextcloud-vue/issues/747
- </template>
+ <ChatView :token="token" />
</AppSidebarTab>
<AppSidebarTab v-if="getUserId"
:order="2"