diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2022-12-07 17:29:58 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2023-01-05 08:57:58 +0100 |
commit | 1063fbcb10b8edc9ceb9804f89f762c526f0cfc0 (patch) | |
tree | fb1f4acb201d676ccb640fc5850a40d4e9480e5a /apps/files_sharing/src/components/SharingEntrySimple.vue | |
parent | 18164ae5163496639737757702f59d52c0c9c657 (diff) | |
download | nextcloud-server-1063fbcb10b8edc9ceb9804f89f762c526f0cfc0.tar.gz nextcloud-server-1063fbcb10b8edc9ceb9804f89f762c526f0cfc0.zip |
Replace custom tooltips with native one in vue components and views
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntrySimple.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntrySimple.vue | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/apps/files_sharing/src/components/SharingEntrySimple.vue b/apps/files_sharing/src/components/SharingEntrySimple.vue index 0a0f86cd530..43a6172fb15 100644 --- a/apps/files_sharing/src/components/SharingEntrySimple.vue +++ b/apps/files_sharing/src/components/SharingEntrySimple.vue @@ -23,7 +23,7 @@ <template> <li class="sharing-entry"> <slot name="avatar" /> - <div v-tooltip="tooltip" class="sharing-entry__desc"> + <div class="sharing-entry__desc"> <span class="sharing-entry__title">{{ title }}</span> <p v-if="subtitle"> {{ subtitle }} @@ -41,7 +41,6 @@ <script> import NcActions from '@nextcloud/vue/dist/Components/NcActions' -import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip' export default { name: 'SharingEntrySimple', @@ -50,20 +49,12 @@ export default { NcActions, }, - directives: { - Tooltip, - }, - props: { title: { type: String, default: '', required: true, }, - tooltip: { - type: String, - default: '', - }, subtitle: { type: String, default: '', |