diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-02-26 11:30:04 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-03 11:38:00 +0100 |
commit | c541094be0a730ffa753bb8c3fa9e724458fb66e (patch) | |
tree | 4fbc3d85d7fba42f44abb5ae3383509204ebe7b4 /apps/files_sharing/src | |
parent | 11858a3d66d7fc7ac6b441310d3dec1cad33b32a (diff) | |
download | nextcloud-server-c541094be0a730ffa753bb8c3fa9e724458fb66e.tar.gz nextcloud-server-c541094be0a730ffa753bb8c3fa9e724458fb66e.zip |
Clear multiselect after selection in share panel
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index 6ca2299b81c..f5b664bd07a 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -23,7 +23,7 @@ <template> <Multiselect ref="multiselect" class="sharing-input" - :clear-on-select="false" + :clear-on-select="true" :disabled="!canReshare" :hide-selected="true" :internal-search="false" |