mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -04:00
enh(a11y): Add label to share note textbox
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
c2e4a7be92
commit
eacde86693
1 changed files with 4 additions and 1 deletions
|
|
@ -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') }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue