summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2024-06-26 15:38:32 +0200
committerMaksim Sukharev <antreesy.web@gmail.com>2024-06-26 19:21:51 +0200
commita62e61a94dea569438dc7f2c28fbc3e887e3caee (patch)
tree05498d43ad4e63f248baebf0aea6432c2832533b /src
parentb3328512e71ac978c24386528169d49b1d500c78 (diff)
feat(RightSidebar): show participants tab in 1-1 calls
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/RightSidebar.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/RightSidebar/RightSidebar.vue b/src/components/RightSidebar/RightSidebar.vue
index 22b600e31..435240cd6 100644
--- a/src/components/RightSidebar/RightSidebar.vue
+++ b/src/components/RightSidebar/RightSidebar.vue
@@ -239,7 +239,7 @@ export default {
},
showParticipantsTab() {
- return (this.getUserId || this.isModeratorOrUser) && !this.isOneToOne && !this.isNoteToSelf
+ return (this.getUserId || this.isModeratorOrUser) && (!this.isOneToOne || this.isInCall) && !this.isNoteToSelf
},
showSharedItemsTab() {