aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/components/SharingEntry.vue
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-12-08 13:01:29 +0100
committerJulius Härtl <jus@bitgrid.net>2020-12-09 13:20:24 +0100
commit8131965b740377cad5c64910ea76070cbf81868a (patch)
tree4a20c79b51c3231e41e0ab470c98db139678aa61 /apps/files_sharing/src/components/SharingEntry.vue
parentf1a54cb6aad8dcb9c98f0070ba4d74b4941aefe3 (diff)
downloadnextcloud-server-8131965b740377cad5c64910ea76070cbf81868a.tar.gz
nextcloud-server-8131965b740377cad5c64910ea76070cbf81868a.zip
Allow share results to have a detailed description and share entries to have a link
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r--apps/files_sharing/src/components/SharingEntry.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue
index 55bdbb8fdcb..407221037dc 100644
--- a/apps/files_sharing/src/components/SharingEntry.vue
+++ b/apps/files_sharing/src/components/SharingEntry.vue
@@ -29,13 +29,16 @@
:tooltip-message="share.type === SHARE_TYPES.SHARE_TYPE_USER ? share.shareWith : ''"
:menu-position="'left'"
:url="share.shareWithAvatar" />
- <div v-tooltip.auto="tooltip" class="sharing-entry__desc">
+ <component :is="share.shareWithLink ? 'a' : 'div'"
+ :href="share.shareWithLink"
+ v-tooltip.auto="tooltip"
+ class="sharing-entry__desc">
<h5>{{ title }}</h5>
<p v-if="hasStatus">
<span>{{ share.status.icon || '' }}</span>
<span>{{ share.status.message || '' }}</span>
</p>
- </div>
+ </component>
<Actions
menu-align="right"
class="sharing-entry__actions"