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:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-08-18 12:00:35 +0300
committerGitHub <noreply@github.com>2022-08-18 12:00:35 +0300
commitb8eb822ee242ceb3b2d954fc0ca112c8148f424e (patch)
tree3cd2e2d231881f13320c46c9b3c52612c30914b3
parenteefd8f16dd1138d95470e9a99b4cf0ad15adb3fd (diff)
parent076799d8d8c93e6bceea1bb9aab884bb52d6cd7b (diff)
Merge pull request #7758 from nextcloud/backport/7741/stable24
[stable24] Fix missing local media controls in public share sidebar
-rw-r--r--src/PublicShareSidebar.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/PublicShareSidebar.vue b/src/PublicShareSidebar.vue
index 11da274c1..dc6c70cda 100644
--- a/src/PublicShareSidebar.vue
+++ b/src/PublicShareSidebar.vue
@@ -32,6 +32,9 @@
</button>
</div>
<template v-else>
+ <TopBar v-if="isInCall"
+ :is-in-call="true"
+ :is-sidebar="true" />
<CallView v-if="isInCall"
:token="token"
:is-sidebar="true" />
@@ -50,6 +53,7 @@ import { loadState } from '@nextcloud/initial-state'
import CallView from './components/CallView/CallView'
import ChatView from './components/ChatView'
import CallButton from './components/TopBar/CallButton'
+import TopBar from './components/TopBar/TopBar'
import { EventBus } from './services/EventBus'
import { getPublicShareConversationData } from './services/filesIntegrationServices'
import {
@@ -74,6 +78,7 @@ export default {
ChatView,
PreventUnload,
DeviceChecker,
+ TopBar,
},
mixins: [