summaryrefslogtreecommitdiffstats
path: root/src/components/CallView/shared/VideoVue.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/CallView/shared/VideoVue.vue')
-rw-r--r--src/components/CallView/shared/VideoVue.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/CallView/shared/VideoVue.vue b/src/components/CallView/shared/VideoVue.vue
index 702333fa2..91f6c6783 100644
--- a/src/components/CallView/shared/VideoVue.vue
+++ b/src/components/CallView/shared/VideoVue.vue
@@ -82,7 +82,7 @@
class="connection-message">
{{ connectionMessage }}
</div>
- <slot name="bottom-bar">
+ <slot v-if="!hideBottomBar" name="bottom-bar">
<VideoBottomBar v-bind="$props"
:has-shadow="hasVideo"
:participant-name="participantName" />
@@ -176,6 +176,11 @@ export default {
type: Boolean,
default: false,
},
+
+ hideBottomBar: {
+ type: Boolean,
+ default: false,
+ },
},
data() {