diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-08-12 11:42:51 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-08-26 19:49:00 +0200 |
commit | 2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3 (patch) | |
tree | 45cab9e731c0a959a15e42c016324367e0f1a754 /apps/files_sharing/src/components/SharingEntry.vue | |
parent | f630bd27f7ff881050a4ca516a96d00c8ba8afb6 (diff) | |
download | nextcloud-server-2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3.tar.gz nextcloud-server-2f30d3227f8af0a0c79b139f1cfbd334ca94e0d3.zip |
Various fixes
- Fix user status dialog
- Add label where missing
- Move emoji picker inside input field (similar to talk)
- Fix selecting an emoji
- Fix multiselect
- Fix button with confirmation action
- Fix some other unrelated dark theme issues
- Fix select2 focus
- Run npm lint:fix
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 c77bdd4292a..fccabf4532b 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 ref="canDownload" + <NcActionCheckbox v-if="isSetDownloadButtonVisible" + ref="canDownload" :checked.sync="canDownload" - v-if="isSetDownloadButtonVisible" :disabled="saving || !canSetDownload"> {{ allowDownloadText }} </NcActionCheckbox> |