aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/components/SharingEntrySimple.vue
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-12-07 17:29:58 +0100
committerVincent Petry <vincent@nextcloud.com>2023-01-05 08:57:58 +0100
commit1063fbcb10b8edc9ceb9804f89f762c526f0cfc0 (patch)
treefb1f4acb201d676ccb640fc5850a40d4e9480e5a /apps/files_sharing/src/components/SharingEntrySimple.vue
parent18164ae5163496639737757702f59d52c0c9c657 (diff)
downloadnextcloud-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.vue11
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: '',