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:50:29 +0300
commit90d775da7d29db5818b20013c491bfd5fc2d8fe8 (patch)
treec48fdb3566b5e5446dec10bd92f3a2548403965a
parent578a05d2f08e431d895872e4d35e0ddfe3f57c14 (diff)
Fix missing tooltip directive in DeviceCheckerbackport/7740/stable23-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 ceda3a7d9..98ca4d24e 100644
--- a/src/components/DeviceChecker/DeviceChecker.vue
+++ b/src/components/DeviceChecker/DeviceChecker.vue
@@ -172,6 +172,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'
@@ -193,6 +194,10 @@ import VolumeIndicator from '../VolumeIndicator/VolumeIndicator.vue'
export default {
name: 'DeviceChecker',
+ directives: {
+ Tooltip,
+ },
+
components: {
Modal,
MediaDevicesSelector,