diff options
author | Grigorii K. Shartsev <me@shgk.me> | 2024-09-06 16:47:08 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-09 14:42:35 +0000 |
commit | 80c52467f1a8488cff993807be82a9b3020f2f36 (patch) | |
tree | 28c859ff60a11282b4be3f6b5786b84292208532 /apps/files_sharing | |
parent | 789ccf8798625b56a7bf8194052041425776e8a5 (diff) | |
download | nextcloud-server-80c52467f1a8488cff993807be82a9b3020f2f36.tar.gz nextcloud-server-80c52467f1a8488cff993807be82a9b3020f2f36.zip |
fix(files_sharing): checkbox for password in link share is not shown
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'apps/files_sharing')
-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 d8c465008c3..34991e2fa40 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -237,6 +237,7 @@ import Vue from 'vue' import VueQrcode from '@chenfengyuan/vue-qrcode' 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' @@ -270,6 +271,7 @@ export default { ExternalShareAction, NcActions, NcActionButton, + NcActionCheckbox, NcActionInput, NcActionLink, NcActionText, |