diff options
author | Vincent Petry <vincent@nextcloud.com> | 2023-01-13 10:22:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 10:22:12 +0100 |
commit | b88864b89967cabd78c47d75ee2ff4b1d204934f (patch) | |
tree | 2473cfb5bb5118cb6eae848fc172fd0b6f85ac30 /apps/files_sharing | |
parent | 97e83c31b456e628e97d2b3e8d586c1222cd497f (diff) | |
parent | 41d7f9dff2a24afe857174aafc8643f5278f4b05 (diff) | |
download | nextcloud-server-b88864b89967cabd78c47d75ee2ff4b1d204934f.tar.gz nextcloud-server-b88864b89967cabd78c47d75ee2ff4b1d204934f.zip |
Merge pull request #36130 from nextcloud/enh/a11y-share-link-label
Add always visible share label
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 66b60ebf3bc..dcdebe2e8c5 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -127,14 +127,12 @@ <NcActionInput ref="label" :class="{ error: errors.label }" :disabled="saving" - :aria-label="t('files_sharing', 'Share label')" + :label="t('files_sharing', 'Share label')" :value="share.newLabel !== undefined ? share.newLabel : share.label" icon="icon-edit" maxlength="255" @update:value="onLabelChange" - @submit="onLabelSubmit"> - {{ t('files_sharing', 'Share label') }} - </NcActionInput> + @submit="onLabelSubmit" /> <SharePermissionsEditor :can-reshare="canReshare" :share.sync="share" |