diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-08 18:09:20 +0100 |
---|---|---|
committer | Backportbot <backportbot-noreply@rullzer.com> | 2020-01-09 10:08:22 +0000 |
commit | 15665616f4624d8d297982d7ac3693d851b70aa7 (patch) | |
tree | 534a42c36df992ba2741f4e64832ee0d964ba7f4 /apps/files/src | |
parent | 5fdac43d5b82a9b38bb0be6492ea072fb08f0760 (diff) | |
download | nextcloud-server-15665616f4624d8d297982d7ac3693d851b70aa7.tar.gz nextcloud-server-15665616f4624d8d297982d7ac3693d851b70aa7.zip |
Combine exact and other matches for transfer ownership
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/components/TransferOwnershipDialogue.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/src/components/TransferOwnershipDialogue.vue b/apps/files/src/components/TransferOwnershipDialogue.vue index d24eb78e692..d7106f9221d 100644 --- a/apps/files/src/components/TransferOwnershipDialogue.vue +++ b/apps/files/src/components/TransferOwnershipDialogue.vue @@ -172,7 +172,7 @@ export default { } this.userSuggestions = {} - response.data.ocs.data.users.forEach(user => { + response.data.ocs.data.exact.users.concat(response.data.ocs.data.users).forEach(user => { Vue.set(this.userSuggestions, user.value.shareWith, { uid: user.value.shareWith, displayName: user.label, |