diff options
author | Grigorii K. Shartsev <me@shgk.me> | 2024-09-06 16:47:08 +0200 |
---|---|---|
committer | nfebe <fenn25.fn@gmail.com> | 2024-12-09 02:41:21 +0100 |
commit | 301a7dacf19d9888dbce3495fd80b755732f40ee (patch) | |
tree | 0f1b9f1f15a0cd82f46481af91a23a33eff41af0 | |
parent | ef900054d51cc52dea5b9d90741fcd88fe91540d (diff) | |
download | nextcloud-server-301a7dacf19d9888dbce3495fd80b755732f40ee.tar.gz nextcloud-server-301a7dacf19d9888dbce3495fd80b755732f40ee.zip |
fix(files_sharing): checkbox for password in link share is not shown
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 294f48b5350..f62a0358072 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -198,6 +198,7 @@ import { Type as ShareTypes } from '@nextcloud/sharing' import Vue from 'vue' import NcActionButton from '@nextcloud/vue/dist/Components/NcActionButton.js' +import NcActionCheckbox from '@nextcloud/vue/dist/Components/NcActionCheckbox.js' import NcActionInput from '@nextcloud/vue/dist/Components/NcActionInput.js' import NcActionLink from '@nextcloud/vue/dist/Components/NcActionLink.js' import NcActionText from '@nextcloud/vue/dist/Components/NcActionText.js' @@ -223,6 +224,7 @@ export default { ExternalShareAction, NcActions, NcActionButton, + NcActionCheckbox, NcActionInput, NcActionLink, NcActionText, |