diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-05-05 18:46:24 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-05-05 21:36:46 +0200 |
commit | a26ca1e638c4b395311bc2d010d0ffd070dbbe2d (patch) | |
tree | 82f68cb0cd797029bd8779c2c8a5005975d5e4b4 /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 32e56dee89154aac5ec66cc2dbf10704ee823fba (diff) | |
download | nextcloud-server-a26ca1e638c4b395311bc2d010d0ffd070dbbe2d.tar.gz nextcloud-server-a26ca1e638c4b395311bc2d010d0ffd070dbbe2d.zip |
Do not filter id matching userId on non-user-share shares
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 288236abad7..4af3a6b4431 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -23,6 +23,7 @@ <template> <li class="sharing-entry"> <Avatar class="sharing-entry__avatar" + :is-no-user="share.type !== SHARE_TYPES.SHARE_TYPE_USER" :user="share.shareWith" :display-name="share.shareWithDisplayName" :url="share.shareWithAvatar" /> |