summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 18:45:31 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-16 10:28:39 +0200
commitfb9f756bb2a08dd63d9f823bc3ed002f8f45d756 (patch)
treead0c52a2f4be955b3e3c0c70f3a8594c70e8cd65
parent8c2185252385153f2525d27fc5a9e57c3bbc8899 (diff)
Fix missing tooltip directive in DeviceChecker
Although the directive was missing the tooltips were still shown in the normal Talk UI; the tooltips were missing only when Talk was embedded in other apps, like the Files app. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/components/DeviceChecker/DeviceChecker.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/DeviceChecker/DeviceChecker.vue b/src/components/DeviceChecker/DeviceChecker.vue
index b822df650..edf500aeb 100644
--- a/src/components/DeviceChecker/DeviceChecker.vue
+++ b/src/components/DeviceChecker/DeviceChecker.vue
@@ -170,6 +170,7 @@
<script>
import Modal from '@nextcloud/vue/dist/Components/Modal.js'
+import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip.js'
import { devices } from '../../mixins/devices.js'
import MediaDevicesSelector from '../MediaDevicesSelector.vue'
import VideoBackground from '../CallView/shared/VideoBackground.vue'
@@ -197,6 +198,10 @@ import isInLobby from '../../mixins/isInLobby.js'
export default {
name: 'DeviceChecker',
+ directives: {
+ Tooltip,
+ },
+
components: {
Modal,
MediaDevicesSelector,