diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-12 15:11:10 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | df42a10e56d2fd0721c97c8ef4ba4d8eadcea6af (patch) | |
tree | ce6a076cd90fa3afb0407cf552e7886156324d55 /apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue | |
parent | 9b84831c8d0c1d715cd42fa3e4e01ac8a59fa369 (diff) | |
download | nextcloud-server-df42a10e56d2fd0721c97c8ef4ba4d8eadcea6af.tar.gz nextcloud-server-df42a10e56d2fd0721c97c8ef4ba4d8eadcea6af.zip |
chore(files_sharing): lint & refactor fixes
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue')
-rw-r--r-- | apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue index 651f2a52efe..58a5b5fd0d6 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue @@ -17,7 +17,7 @@ </NcNoteCard> <!-- Enable expiration --> - <legend>{{ t('files_sharing', 'When should the request expire ?') }}</legend> + <legend>{{ t('files_sharing', 'When should the request expire?') }}</legend> <NcCheckboxRadioSwitch v-show="!defaultExpireDateEnforced" :checked="defaultExpireDateEnforced || expirationDate !== null" :disabled="disabled || defaultExpireDateEnforced" @@ -47,7 +47,7 @@ </NcNoteCard> <!-- Enable password --> - <legend>{{ t('files_sharing', 'What password should be used for the request ?') }}</legend> + <legend>{{ t('files_sharing', 'What password should be used for the request?') }}</legend> <NcCheckboxRadioSwitch v-show="!enforcePasswordForPublicLink" :checked="enforcePasswordForPublicLink || password !== null" :disabled="disabled || enforcePasswordForPublicLink" |