summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorF. E Noel Nfebe <fenn25.fn@gmail.com>2023-10-10 01:03:39 +0100
committerGitHub <noreply@github.com>2023-10-10 01:03:39 +0100
commitdfd0adff0eecf7aeff9f096e00459fa7b00fc0b3 (patch)
treedd82e4f00685c6455207eb1860ca6bc8b6473f08 /apps/files_sharing
parentfeccf26928dd5805c89a8688afd9b46366a0fa7e (diff)
parent4516bb0587ad2602bb26435d0eee794461c34df3 (diff)
downloadnextcloud-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.vue5
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') }}