diff options
author | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2023-10-10 01:03:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 01:03:39 +0100 |
commit | dfd0adff0eecf7aeff9f096e00459fa7b00fc0b3 (patch) | |
tree | dd82e4f00685c6455207eb1860ca6bc8b6473f08 /apps/files_sharing | |
parent | feccf26928dd5805c89a8688afd9b46366a0fa7e (diff) | |
parent | 4516bb0587ad2602bb26435d0eee794461c34df3 (diff) | |
download | nextcloud-server-dfd0adff0eecf7aeff9f096e00459fa7b00fc0b3.tar.gz nextcloud-server-dfd0adff0eecf7aeff9f096e00459fa7b00fc0b3.zip |
Merge pull request #40681 from nextcloud/manual/backport/stable27/40430
[stable27] enh(a11y): Add label to share note textbox
Diffstat (limited to 'apps/files_sharing')
-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 c8f702cce93..0c65864c233 100644 --- a/apps/files_sharing/src/views/SharingDetailsTab.vue +++ b/apps/files_sharing/src/views/SharingDetailsTab.vue @@ -139,7 +139,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') }} |