Skip to content

Commit baf06b9

Browse files
Fix link share label placeholder not showing
Signed-off-by: Gary Kim <gary@garykim.dev> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
1 parent 0624ca3 commit baf06b9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

apps/files_sharing/js/dist/files_sharing_tab.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_sharing/js/dist/files_sharing_tab.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_sharing/src/components/SharingEntryLink.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,14 @@
137137
}"
138138
:class="{ error: errors.label }"
139139
:disabled="saving"
140-
:placeholder="t('files_sharing', 'Share label')"
141140
:aria-label="t('files_sharing', 'Share label')"
142141
:value="share.newLabel || share.label"
143142
icon="icon-edit"
144143
maxlength="255"
145144
@update:value="onLabelChange"
146-
@submit="onLabelSubmit" />
145+
@submit="onLabelSubmit">
146+
{{ t('files_sharing', 'Share label') }}
147+
</ActionInput>
147148
<!-- folder -->
148149
<template v-if="isFolder && fileHasCreatePermission && config.isPublicUploadEnabled">
149150
<ActionRadio :checked="sharePermissions === publicUploadRValue"

0 commit comments

Comments
 (0)