diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-10 22:13:48 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2020-11-10 22:30:37 +0100 |
commit | 9218dfb975e5579ed86445293253954c1a16ea91 (patch) | |
tree | 813fd2fb5eccc18468ceab2e9ec20761bf8e057a /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 03b436c0006f0362079c0978053c0a996e92c09f (diff) | |
download | nextcloud-server-9218dfb975e5579ed86445293253954c1a16ea91.tar.gz nextcloud-server-9218dfb975e5579ed86445293253954c1a16ea91.zip |
Do not show "Can reshare" in the menu if resharing is not allowed
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index 2f213730bf8..bb209f2e232 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -70,6 +70,7 @@ <!-- reshare permission --> <ActionCheckbox + v-if="config.isResharingAllowed" ref="canReshare" :checked.sync="canReshare" :value="permissionsShare" |