diff options
Diffstat (limited to 'apps/files_sharing/src/components')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 73b7ea073c3..522e8e23355 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -141,7 +141,7 @@ :class="{ error: errors.label }" :disabled="saving" :aria-label="t('files_sharing', 'Share label')" - :value="share.newLabel || share.label" + :value="share.newLabel !== undefined ? share.newLabel : share.label" icon="icon-edit" maxlength="255" @update:value="onLabelChange" |