From de37a4b4f0e90b042be1efae11f8ccccc55c31c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 6 Oct 2020 15:34:46 +0200 Subject: [PATCH] Use uid instead of displayname for sharee results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/board/SharingTabSidebar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/board/SharingTabSidebar.vue b/src/components/board/SharingTabSidebar.vue index c23fc0a13..c2df4ad98 100644 --- a/src/components/board/SharingTabSidebar.vue +++ b/src/components/board/SharingTabSidebar.vue @@ -102,7 +102,7 @@ export default { formatedSharees() { return this.unallocatedSharees.map(item => { const sharee = { - user: item.label, + user: item.value.shareWith, displayName: item.label, icon: 'icon-user', multiselectKey: item.shareType + ':' + item.primaryKey,