Use uid instead of displayname for sharee results

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-10-06 15:34:46 +02:00
parent 0ed5545b2f
commit de37a4b4f0

View File

@@ -102,7 +102,7 @@ export default {
formatedSharees() { formatedSharees() {
return this.unallocatedSharees.map(item => { return this.unallocatedSharees.map(item => {
const sharee = { const sharee = {
user: item.label, user: item.value.shareWith,
displayName: item.label, displayName: item.label,
icon: 'icon-user', icon: 'icon-user',
multiselectKey: item.shareType + ':' + item.primaryKey, multiselectKey: item.shareType + ':' + item.primaryKey,