Skip to content

Commit

Permalink
Merge pull request #25017 from nextcloud/fix-clearing-the-label-of-a-…
Browse files Browse the repository at this point in the history
…share

Fix clearing the label of a share
  • Loading branch information
rullzer authored Jan 8, 2021
2 parents 84e6e9f + fb19d4a commit 08cc9ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/files_sharing_tab.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/files_sharing_tab.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/src/components/SharingEntryLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 08cc9ad

Please sign in to comment.