Browse Source
Merge pull request #36130 from nextcloud/enh/a11y-share-link-label
Add always visible share label
pull/36113/head
Vincent Petry
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
7 deletions
-
apps/files_sharing/src/components/SharingEntryLink.vue
-
dist/files_sharing-files_sharing_tab.js
-
dist/files_sharing-files_sharing_tab.js.map
|
|
|
@ -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" |
|
|
|
|