summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-08-16 10:35:27 +0200
committerGitHub <noreply@github.com>2022-08-16 10:35:27 +0200
commit8b3fdb1f8e5c2123240a8dfdb751f26b177a01e9 (patch)
tree7ce9671e89624ba30ab655b3f259cbe8fdf89784
parentea97ea2ee44b580df3803ea9c875670d56c62ce4 (diff)
parent03d48e4ad2063286b572bee301da6c105fff13c0 (diff)
Merge pull request #7741 from nextcloud/fix-missing-local-media-controls-in-public-share-sidebar
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 2f264ef7c..fa359bfee 100644
--- a/src/PublicShareSidebar.vue
+++ b/src/PublicShareSidebar.vue
@@ -37,6 +37,9 @@
</ButtonVue>
</div>
<template v-else>
+ <TopBar v-if="isInCall"
+ :is-in-call="true"
+ :is-sidebar="true" />
<CallView v-if="isInCall"
:token="token"
:is-sidebar="true" />
@@ -56,6 +59,7 @@ import { loadState } from '@nextcloud/initial-state'
import CallView from './components/CallView/CallView.vue'
import ChatView from './components/ChatView.vue'
import CallButton from './components/TopBar/CallButton.vue'
+import TopBar from './components/TopBar/TopBar.vue'
import { EventBus } from './services/EventBus.js'
import { getPublicShareConversationData } from './services/filesIntegrationServices.js'
import {
@@ -81,6 +85,7 @@ export default {
ChatView,
PreventUnload,
DeviceChecker,
+ TopBar,
},
mixins: [