mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
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
3 changed files with 3 additions and 3 deletions
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 a new issue