diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-01-12 18:59:02 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-01-12 22:42:40 +0000 |
commit | 41d7f9dff2a24afe857174aafc8643f5278f4b05 (patch) | |
tree | 5e1a00d4f3b6566e6c464ab51064ebb5e1c3313f /apps | |
parent | bec52be8edf0067056840fb8e5b75d39ef84d803 (diff) | |
download | nextcloud-server-41d7f9dff2a24afe857174aafc8643f5278f4b05.tar.gz nextcloud-server-41d7f9dff2a24afe857174aafc8643f5278f4b05.zip |
Add visible share label
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps')
-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" |