diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-05-06 17:46:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 17:46:21 +0200 |
commit | 06732cf2afac424c5400766d57f374eb9e3d00ba (patch) | |
tree | 41fb9dea8fc6b315a1f4b47c0e4f7bb1fa1b905f /apps/files_sharing/src | |
parent | d5850eb28ff91a4f3faf004572dd541a20cb4fdb (diff) | |
parent | a26ca1e638c4b395311bc2d010d0ffd070dbbe2d (diff) | |
download | nextcloud-server-06732cf2afac424c5400766d57f374eb9e3d00ba.tar.gz nextcloud-server-06732cf2afac424c5400766d57f374eb9e3d00ba.zip |
Merge pull request #20832 from nextcloud/fix/sharing-filter-user-shares-only-fix-group-display
Do not filter id matching userId on non-user-share shares
Diffstat (limited to 'apps/files_sharing/src')
-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" /> |