Merge pull request #25035 from nextcloud/backport/25017/stable20
[stable20] Fix clearing the label of a share
This commit is contained in:
commit
43ec70d43b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -138,7 +138,7 @@
|
||||||
:class="{ error: errors.label }"
|
:class="{ error: errors.label }"
|
||||||
:disabled="saving"
|
:disabled="saving"
|
||||||
:aria-label="t('files_sharing', 'Share label')"
|
:aria-label="t('files_sharing', 'Share label')"
|
||||||
:value="share.newLabel || share.label"
|
:value="share.newLabel !== undefined ? share.newLabel : share.label"
|
||||||
icon="icon-edit"
|
icon="icon-edit"
|
||||||
maxlength="255"
|
maxlength="255"
|
||||||
@update:value="onLabelChange"
|
@update:value="onLabelChange"
|
||||||
|
|
Loading…
Reference in New Issue