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.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.vue')
-rw-r--r-- | apps/files_sharing/src/components/NewFileRequestDialog.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/NewFileRequestDialog.vue b/apps/files_sharing/src/components/NewFileRequestDialog.vue index 31bca5d045b..35cd4395290 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog.vue @@ -22,7 +22,8 @@ <!-- Main form --> <form ref="form" class="file-request-dialog__form" - aria-labelledby="file-request-dialog-description" + aria-describedby="file-request-dialog-description" + :aria-label="t('files_sharing', 'File request')" aria-live="polite" data-cy-file-request-dialog-form @submit.prevent.stop=""> @@ -69,7 +70,7 @@ data-cy-file-request-dialog-controls="back" type="tertiary" @click="currentStep = STEP.FIRST"> - {{ t('files_sharing', 'Previous') }} + {{ t('files_sharing', 'Previous step') }} </NcButton> <!-- Next --> |