diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-10-07 12:32:16 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-12-14 11:14:59 +0100 |
commit | 102402bfcbad8a0c1730b4d88172bcee28c50df7 (patch) | |
tree | 65893ae342b53f7529d70ea10548c5b62ccae5e2 /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 131fcac91ed0468d6564eb268c85b6665e06f330 (diff) | |
download | nextcloud-server-102402bfcbad8a0c1730b4d88172bcee28c50df7.tar.gz nextcloud-server-102402bfcbad8a0c1730b4d88172bcee28c50df7.zip |
Show unique displayname context in the user share list entries
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.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 407221037dc..c66dfc5c802 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -33,7 +33,7 @@ :href="share.shareWithLink" v-tooltip.auto="tooltip" class="sharing-entry__desc"> - <h5>{{ title }}</h5> + <h5>{{ title }}<span v-if="!isUnique" class="sharing-entry__desc-unique"> ({{ share.shareWithDisplayNameUnique }})</span></h5> <p v-if="hasStatus"> <span>{{ share.status.icon || '' }}</span> <span>{{ share.status.message || '' }}</span> @@ -402,6 +402,9 @@ export default { p { color: var(--color-text-maxcontrast); } + &-unique { + color: var(--color-text-maxcontrast); + } } &__actions { margin-left: auto; |