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>
This commit is contained in:
parent
0624ca3527
commit
baf06b9894
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -137,13 +137,14 @@
|
||||||
}"
|
}"
|
||||||
:class="{ error: errors.label }"
|
:class="{ error: errors.label }"
|
||||||
:disabled="saving"
|
:disabled="saving"
|
||||||
:placeholder="t('files_sharing', 'Share label')"
|
|
||||||
:aria-label="t('files_sharing', 'Share label')"
|
:aria-label="t('files_sharing', 'Share label')"
|
||||||
:value="share.newLabel || share.label"
|
:value="share.newLabel || share.label"
|
||||||
icon="icon-edit"
|
icon="icon-edit"
|
||||||
maxlength="255"
|
maxlength="255"
|
||||||
@update:value="onLabelChange"
|
@update:value="onLabelChange"
|
||||||
@submit="onLabelSubmit" />
|
@submit="onLabelSubmit">
|
||||||
|
{{ t('files_sharing', 'Share label') }}
|
||||||
|
</ActionInput>
|
||||||
<!-- folder -->
|
<!-- folder -->
|
||||||
<template v-if="isFolder && fileHasCreatePermission && config.isPublicUploadEnabled">
|
<template v-if="isFolder && fileHasCreatePermission && config.isPublicUploadEnabled">
|
||||||
<ActionRadio :checked="sharePermissions === publicUploadRValue"
|
<ActionRadio :checked="sharePermissions === publicUploadRValue"
|
||||||
|
|
Loading…
Reference in New Issue