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-17 01:48:33 +0300
commitadf399d2e1f98fc0ac6ac57d7198944ef3fa7f75 (patch)
tree2e26ad1c08764aae308b26529cef418e19309143
parent6a733e97d022da2f6c328673bf6df9f6da4b164b (diff)
Fix missing tooltip directive in DeviceCheckerbackport/7740/stable24-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 f65533ee1..94d4130b2 100644
--- a/src/components/DeviceChecker/DeviceChecker.vue
+++ b/src/components/DeviceChecker/DeviceChecker.vue
@@ -158,6 +158,7 @@
<script>
import Modal from '@nextcloud/vue/dist/Components/Modal'
+import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip'
import { devices } from '../../mixins/devices'
import MediaDevicesSelector from '../MediaDevicesSelector.vue'
import VideoBackground from '../CallView/shared/VideoBackground.vue'
@@ -179,6 +180,10 @@ import Button from '@nextcloud/vue/dist/Components/Button'
export default {
name: 'DeviceChecker',
+ directives: {
+ Tooltip,
+ },
+
components: {
Modal,
MediaDevicesSelector,