diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 15:58:07 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | 4b3aa01183209dd44e0112b638baba2d97d266a5 (patch) | |
tree | 4a7d0a2c2ca2f26f2e230fa56eab35566e18d0b4 /apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue | |
parent | df42a10e56d2fd0721c97c8ef4ba4d8eadcea6af (diff) | |
download | nextcloud-server-4b3aa01183209dd44e0112b638baba2d97d266a5.tar.gz nextcloud-server-4b3aa01183209dd44e0112b638baba2d97d266a5.zip |
fix(files_sharing): fix label usage of file request feature
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue')
-rw-r--r-- | apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue index 57b03289661..c995cdc2442 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogIntro.vue @@ -12,7 +12,7 @@ </legend> <NcTextField :value="label" :disabled="disabled" - :label-outside="true" + :label="t('files_sharing', 'Request subject')" :placeholder="t('files_sharing', 'Birthday party photos, History assignment…')" :required="false" name="label" @@ -27,7 +27,7 @@ <NcTextField :value="destination" :disabled="disabled" :helper-text="t('files_sharing', 'The uploaded files are visible only to you unless you choose to share them.')" - :label-outside="true" + :label="t('files_sharing', 'Upload destination')" :minlength="2/* cannot share root */" :placeholder="t('files_sharing', 'Select a destination')" :readonly="false /* cannot validate a readonly input */" @@ -51,7 +51,7 @@ </legend> <NcTextArea :value="note" :disabled="disabled" - :label-outside="true" + :label="t('files_sharing', 'Note for recipient')" :placeholder="t('files_sharing', 'Add a note to help people understand what you are requesting.')" :required="false" name="note" |