mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Fix link share label placeholder not showing
Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
parent
a5fa9604ba
commit
25d260838b
3 changed files with 5 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -140,13 +140,14 @@
|
|||
}"
|
||||
:class="{ error: errors.label }"
|
||||
:disabled="saving"
|
||||
:placeholder="t('files_sharing', 'Share label')"
|
||||
:aria-label="t('files_sharing', 'Share label')"
|
||||
:value="share.newLabel || share.label"
|
||||
icon="icon-edit"
|
||||
maxlength="255"
|
||||
@update:value="onLabelChange"
|
||||
@submit="onLabelSubmit" />
|
||||
@submit="onLabelSubmit">
|
||||
{{ t('files_sharing', 'Share label') }}
|
||||
</ActionInput>
|
||||
<!-- folder -->
|
||||
<template v-if="isFolder && fileHasCreatePermission && config.isPublicUploadEnabled">
|
||||
<ActionRadio :checked="sharePermissions === publicUploadRValue"
|
||||
|
|
|
|||
Loading…
Reference in a new issue