diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-08-25 14:25:56 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-08-26 19:51:10 +0200 |
commit | f1ce2c2b9303426266a81cacb8efb4ebdb6d2458 (patch) | |
tree | 51863c552a0ab5576606fcae2fc823bb74440e3d /apps/files_sharing/src/components/SharingEntry.vue | |
parent | 1d35a53991f356976d78b8053651737821502687 (diff) | |
download | nextcloud-server-f1ce2c2b9303426266a81cacb8efb4ebdb6d2458.tar.gz nextcloud-server-f1ce2c2b9303426266a81cacb8efb4ebdb6d2458.zip |
Fix rebasing issues and improve profile settings page a bit more
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntry.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue index fccabf4532b..c77bdd4292a 100644 --- a/apps/files_sharing/src/components/SharingEntry.vue +++ b/apps/files_sharing/src/components/SharingEntry.vue @@ -78,9 +78,9 @@ {{ t('files_sharing', 'Allow resharing') }} </NcActionCheckbox> - <NcActionCheckbox v-if="isSetDownloadButtonVisible" - ref="canDownload" + <NcActionCheckbox ref="canDownload" :checked.sync="canDownload" + v-if="isSetDownloadButtonVisible" :disabled="saving || !canSetDownload"> {{ allowDownloadText }} </NcActionCheckbox> |