aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorF. E Noel Nfebe <fenn25.fn@gmail.com>2023-09-28 12:54:08 +0100
committerGitHub <noreply@github.com>2023-09-28 12:54:08 +0100
commitc5293bb9db63c937bd407e8f772ebf1af2554cc8 (patch)
tree467bfd374a1bca8e289c09f507a5d270f67ed2f6 /apps
parent1a1514e29655e10b056cee79129b819fb1ebeeeb (diff)
parent39adf3a4ab14a0ac14c44e29952524724f2bae6d (diff)
downloadnextcloud-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.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 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') }}