Merge pull request #2364 from nextcloud/backport/2363/stable1.1

[stable1.1] Use uid instead of displayname for sharee results
This commit is contained in:
Julius Härtl
2020-10-07 11:28:00 +02:00
committed by GitHub

View File

@@ -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,