diff options
author | Louis Chemineau <louis@chmn.me> | 2022-01-20 12:21:43 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-01-21 13:13:52 +0100 |
commit | e101882b9205bf33aa853dfd97753f65e724ff9f (patch) | |
tree | 5051da8a3903531fa43ded2b2ce27c59fe595a83 /apps/files_sharing/src/components/SharingEntryLink.vue | |
parent | ed729c65de08c94fc021a9a46820dbd6be0e3743 (diff) | |
download | nextcloud-server-e101882b9205bf33aa853dfd97753f65e724ff9f.tar.gz nextcloud-server-e101882b9205bf33aa853dfd97753f65e724ff9f.zip |
Auto fix warnings
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index af2ea4cc6e5..5a49a1d4976 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -133,8 +133,7 @@ <template v-if="share"> <template v-if="share.canEdit && canReshare"> <!-- Custom Label --> - <ActionInput - ref="label" + <ActionInput ref="label" v-tooltip.auto="{ content: errors.label, show: errors.label, @@ -185,8 +184,7 @@ {{ t('files_sharing', 'Allow editing') }} </ActionCheckbox> - <ActionCheckbox - :checked.sync="share.hideDownload" + <ActionCheckbox :checked.sync="share.hideDownload" :disabled="saving" @change="queueUpdate('hideDownload')"> {{ t('files_sharing', 'Hide download') }} |