summaryrefslogtreecommitdiffstats
path: root/src/components/CallView/Grid/Grid.vue
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-15 16:22:59 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-15 16:22:59 +0200
commite8d2e2767aaffd48c07199b410559f09f3e50705 (patch)
tree694bac0c6b36bb7d6a890ca6877680eb56de9320 /src/components/CallView/Grid/Grid.vue
parent266007a7f15472d0fc6167d0d88105370ae051d0 (diff)
Fix vue/no-reserved-component-names
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components/CallView/Grid/Grid.vue')
-rw-r--r--src/components/CallView/Grid/Grid.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/CallView/Grid/Grid.vue b/src/components/CallView/Grid/Grid.vue
index aeccf78ff..c7575af92 100644
--- a/src/components/CallView/Grid/Grid.vue
+++ b/src/components/CallView/Grid/Grid.vue
@@ -52,7 +52,7 @@
<template v-if="!devMode && (!isLessThanTwoVideos || !isStripe)">
<EmptyCallView v-if="videos.length === 0 && !isStripe" class="video" :is-grid="true" />
<template v-for="callParticipantModel in displayedVideos">
- <Video :key="callParticipantModel.attributes.peerId"
+ <VideoVue :key="callParticipantModel.attributes.peerId"
:class="{'video': !isStripe}"
:show-video-overlay="showVideoOverlay"
:token="token"
@@ -146,7 +146,7 @@
<script>
import debounce from 'debounce'
-import Video from '../shared/Video.vue'
+import VideoVue from '../shared/VideoVue.vue'
import LocalVideo from '../shared/LocalVideo.vue'
import { subscribe, unsubscribe } from '@nextcloud/event-bus'
import { generateFilePath } from '@nextcloud/router'
@@ -162,7 +162,7 @@ export default {
name: 'Grid',
components: {
- Video,
+ VideoVue,
LocalVideo,
EmptyCallView,
VideoBottomBar,