diff options
author | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2023-09-28 12:54:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 12:54:08 +0100 |
commit | c5293bb9db63c937bd407e8f772ebf1af2554cc8 (patch) | |
tree | 467bfd374a1bca8e289c09f507a5d270f67ed2f6 /apps | |
parent | 1a1514e29655e10b056cee79129b819fb1ebeeeb (diff) | |
parent | 39adf3a4ab14a0ac14c44e29952524724f2bae6d (diff) | |
download | nextcloud-server-c5293bb9db63c937bd407e8f772ebf1af2554cc8.tar.gz nextcloud-server-c5293bb9db63c937bd407e8f772ebf1af2554cc8.zip |
Merge pull request #40430 from nextcloud/enh/a11y/share-note-label
enh(a11y): Add label to share note textbox
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/views/SharingDetailsTab.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue index 199d413d7f8..e892ca472d8 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -136,7 +136,10 @@ {{ t('file_sharing', 'Note to recipient') }} </NcCheckboxRadioSwitch> <template v-if="writeNoteToRecipientIsChecked"> - <textarea :value="share.note" @input="share.note = $event.target.value" /> + <label for="share-note-textarea"> + {{ t('files_sharing', 'Enter a note for the share recipient') }} + </label> + <textarea id="share-note-textarea" :value="share.note" @input="share.note = $event.target.value" /> </template> <NcCheckboxRadioSwitch :checked.sync="setCustomPermissions"> {{ t('file_sharing', 'Custom permissions') }} |