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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-01-14 17:40:42 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-01-16 02:00:19 +0300
commit9a0fa63a5c1f8fa6bb4ce21fd77de55c66aaacbf (patch)
tree60b9bd86df61ae8d162743fb904436261eda6b91 /apps/files_sharing/src/components/SharingEntry.vue
parent3d03d820262cbc75e1356a58d3ef13fac45bcc8c (diff)
Do not save on update, use submit
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntry.vue')
-rw-r--r--apps/files_sharing/src/components/SharingEntry.vue17
1 files changed, 14 insertions, 3 deletions
diff --git a/apps/files_sharing/src/components/SharingEntry.vue b/apps/files_sharing/src/components/SharingEntry.vue
index ff6e8bcae77..ee944a76258 100644
--- a/apps/files_sharing/src/components/SharingEntry.vue
+++ b/apps/files_sharing/src/components/SharingEntry.vue
@@ -29,7 +29,10 @@
<div v-tooltip.auto="tooltip" class="sharing-entry__desc">
<h5>{{ title }}</h5>
</div>
- <Actions menu-align="right" class="sharing-entry__actions">
+ <Actions
+ menu-align="right"
+ class="sharing-entry__actions"
+ @close="onMenuClose">
<template v-if="share.canEdit">
<!-- edit permission -->
<ActionCheckbox
@@ -114,9 +117,10 @@
}"
:class="{ error: errors.note}"
:disabled="saving"
- :value.sync="share.note"
+ :value="share.newNote || share.note"
icon="icon-edit"
- @update:value="debounceQueueUpdate('note')" />
+ @update:value="onNoteChange"
+ @submit="onNoteSubmit" />
</template>
</template>
@@ -303,6 +307,13 @@ export default {
this.share.permissions = permissions
this.queueUpdate('permissions')
},
+
+ /**
+ * Save potential changed data on menu close
+ */
+ onMenuClose() {
+ this.onNoteSubmit()
+ },
},
}
</script>