diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2022-12-28 11:32:42 +0100 |
---|---|---|
committer | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-01-11 14:22:47 +0100 |
commit | 087f445499ec5a1d4eae246941f0e155420685fb (patch) | |
tree | 42611b49f2fa81df2830018f939bb526769cbed0 /apps/updatenotification/src/components | |
parent | 9bddc38f196bdf28142a0cd7afce4505672d8fa2 (diff) | |
download | nextcloud-server-087f445499ec5a1d4eae246941f0e155420685fb.tar.gz nextcloud-server-087f445499ec5a1d4eae246941f0e155420685fb.zip |
Replace custom tooltips with native tooltips
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/updatenotification/src/components')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index d17ff69cbd1..e5e05a87743 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -71,7 +71,7 @@ </template> <template v-else> {{ t('updatenotification', 'Your version is up to date.') }} - <span v-tooltip.auto="lastCheckedOnString" class="icon-info svg" /> + <span :title="lastCheckedOnString" :aria-label="lastCheckedOnString" class="icon-info svg" /> </template> <template v-if="!isDefaultUpdateServerURL"> @@ -129,7 +129,6 @@ import NcPopoverMenu from '@nextcloud/vue/dist/Components/NcPopoverMenu.js' import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect.js' import NcSettingsSection from '@nextcloud/vue/dist/Components/NcSettingsSection.js' import NcNoteCard from '@nextcloud/vue/dist/Components/NcNoteCard.js' -import { VTooltip } from 'v-tooltip' import ClickOutside from 'vue-click-outside' import axios from '@nextcloud/axios' import { loadState } from '@nextcloud/initial-state' @@ -142,8 +141,6 @@ const logger = getLoggerBuilder() .detectUser() .build() -VTooltip.options.defaultHtml = false - export default { name: 'UpdateNotification', components: { @@ -154,7 +151,6 @@ export default { }, directives: { ClickOutside, - tooltip: VTooltip, }, data() { return { |