Skip to content

Commit

Permalink
Merge pull request #12586 from nextcloud/fix/sidebar-tabs-remount
Browse files Browse the repository at this point in the history
fix(sidebar): tab is not shown after switching a conversation
  • Loading branch information
Antreesy authored Jun 26, 2024
2 parents eb64a93 + 0f6a519 commit 4477b53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/RightSidebar/RightSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
</template>
<NcAppSidebarTab v-if="isInCall"
id="chat"
key="chat"
:order="1"
:name="t('spreed', 'Chat')">
<template #icon>
Expand All @@ -26,6 +27,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showParticipantsTab"
id="participants"
key="participants"
ref="participantsTab"
:order="2"
:name="participantsText">
Expand All @@ -38,6 +40,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showBreakoutRoomsTab"
id="breakout-rooms"
key="breakout-rooms"
ref="breakout-rooms"
:order="3"
:name="breakoutRoomsText">
Expand All @@ -50,6 +53,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showDetailsTab"
id="details-tab"
key="details-tab"
:order="4"
:name="t('spreed', 'Details')">
<template #icon>
Expand All @@ -72,6 +76,7 @@
</NcAppSidebarTab>
<NcAppSidebarTab v-if="showSharedItemsTab"
id="shared-items"
key="shared-items"
ref="sharedItemsTab"
:order="5"
:name="t('spreed', 'Shared items')">
Expand Down

0 comments on commit 4477b53

Please sign in to comment.