Merge pull request #25017 from nextcloud/fix-clearing-the-label-of-a-share
Fix clearing the label of a share
This commit is contained in:
commit
08cc9ad496
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue