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:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 19:45:31 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2022-08-13 19:45:31 +0300
commit45dff9a826223e1fada385a29157b7ed9ebb9bd2 (patch)
tree96c0285dc563ffab148e7382db3719a8480a2f12
parent68fc05e55395c8cbc83b3ca4e9765cfd3531e454 (diff)
Fix missing tooltip directive in DeviceCheckerfix-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 27f8ddfee..ffe1510f9 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'
+import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip'
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,