Merge pull request #23992 from nextcloud/backport/23574/stable20

[stable20] Fix link share label placeholder not showing
This commit is contained in:
Morris Jobke 2020-11-09 14:10:41 +01:00 committed by GitHub
commit 3459db0472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

View File

@ -137,13 +137,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"