Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2022-01-20 14:21:43 +0300
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-01-21 15:13:52 +0300
commite101882b9205bf33aa853dfd97753f65e724ff9f (patch)
tree5051da8a3903531fa43ded2b2ce27c59fe595a83 /apps/files_sharing/src/components/SharingEntry.vue
parented729c65de08c94fc021a9a46820dbd6be0e3743 (diff)
Auto fix warnings
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r--apps/files_sharing/src/components/SharingEntry.vue18
1 files changed, 6 insertions, 12 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue
index d5d7f62a832..2d29aaf1dc6 100644
--- a/apps/files_sharing/src/components/SharingEntry.vue
+++ b/apps/files_sharing/src/components/SharingEntry.vue
@@ -39,14 +39,12 @@
<span>{{ share.status.message || '' }}</span>
</p>
</component>
- <Actions
- menu-align="right"
+ <Actions menu-align="right"
class="sharing-entry__actions"
@close="onMenuClose">
<template v-if="share.canEdit">
<!-- edit permission -->
- <ActionCheckbox
- ref="canEdit"
+ <ActionCheckbox ref="canEdit"
:checked.sync="canEdit"
:value="permissionsEdit"
:disabled="saving || !canSetEdit">
@@ -54,8 +52,7 @@
</ActionCheckbox>
<!-- create permission -->
- <ActionCheckbox
- v-if="isFolder"
+ <ActionCheckbox v-if="isFolder"
ref="canCreate"
:checked.sync="canCreate"
:value="permissionsCreate"
@@ -64,8 +61,7 @@
</ActionCheckbox>
<!-- delete permission -->
- <ActionCheckbox
- v-if="isFolder"
+ <ActionCheckbox v-if="isFolder"
ref="canDelete"
:checked.sync="canDelete"
:value="permissionsDelete"
@@ -74,8 +70,7 @@
</ActionCheckbox>
<!-- reshare permission -->
- <ActionCheckbox
- v-if="config.isResharingAllowed"
+ <ActionCheckbox v-if="config.isResharingAllowed"
ref="canReshare"
:checked.sync="canReshare"
:value="permissionsShare"
@@ -112,8 +107,7 @@
<!-- note -->
<template v-if="canHaveNote">
- <ActionCheckbox
- :checked.sync="hasNote"
+ <ActionCheckbox :checked.sync="hasNote"
:disabled="saving"
@uncheck="queueUpdate('note')">
{{ t('files_sharing', 'Note to recipient') }}