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
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 23:00:31 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-17 14:57:00 +0300
commit61c32c996c665e722b9306f6f865f27b0aa3241a (patch)
tree32d9067c4ac7f3336619d7bf043dd44304aee474
parentd08e56065e86f2435eff0cff86d8a5b2e09bddf2 (diff)
Fix remote screen shares not shown in sidebarbackport/7742/stable23-fix-remote-screenshares-not-shown-in-sidebar
When the call view is shown in the sidebar there is no button to share the screen. However, other participants can nevertheless open the call from the main Talk UI and share their screen there, so remote screen shares should be shown even if local ones can not be started. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/components/CallView/CallView.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/CallView/CallView.vue b/src/components/CallView/CallView.vue
index 85edee421..efd51cae4 100644
--- a/src/components/CallView/CallView.vue
+++ b/src/components/CallView/CallView.vue
@@ -46,7 +46,7 @@
</template>
</div>
<!-- Screens -->
- <div v-else-if="!isSidebar && (showLocalScreen || showRemoteScreen)" id="screens">
+ <div v-else-if="showLocalScreen || showRemoteScreen" id="screens">
<!-- local screen -->
<Screen
v-if="showLocalScreen"