summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGrigorii K. Shartsev <me@shgk.me>2024-06-26 18:19:52 +0200
committerGrigorii K. Shartsev <me@shgk.me>2024-06-26 18:19:52 +0200
commit0f6a519d2fadee1a289638f8a7e722c2ad6c41f3 (patch)
tree112ad1ecce1d2e0bd40fa86f14bba814ed1772de /src
parenteb64a937fbe7c50409c85f5018cba43652fa60a2 (diff)
fix(sidebar): no tab after switching conversations
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/RightSidebar.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue
index 666cf3f2f..972c52287 100644
--- a/src/components/RightSidebar/RightSidebar.vue
+++ b/src/components/RightSidebar/RightSidebar.vue
@@ -17,6 +17,7 @@
</template>
<NcAppSidebarTab v-if="isInCall"
id="chat"
+ key="chat"
:order="1"
:name="t('spreed', 'Chat')">
<template #icon>
@@ -26,6 +27,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showParticipantsTab"
id="participants"
+ key="participants"
ref="participantsTab"
:order="2"
:name="participantsText">
@@ -38,6 +40,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showBreakoutRoomsTab"
id="breakout-rooms"
+ key="breakout-rooms"
ref="breakout-rooms"
:order="3"
:name="breakoutRoomsText">
@@ -50,6 +53,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showDetailsTab"
id="details-tab"
+ key="details-tab"
:order="4"
:name="t('spreed', 'Details')">
<template #icon>
@@ -72,6 +76,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showSharedItemsTab"
id="shared-items"
+ key="shared-items"
ref="sharedItemsTab"
:order="5"
:name="t('spreed', 'Shared items')">