Fix task attributes overridden when saving the task title with enter
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2021-09-08 19:36:55 +02:00
parent c4095327ad
commit 2bae8e95e5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 8 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export default {
name: 'heading',
data() {
return {
task: {title: '', identifier: '', index:''},
task: {title: '', identifier: '', index: ''},
taskTitle: '',
saved: false,
saving: false, // Since loading is global state, this variable ensures we're only showing the saving icon when saving the description.
@ -79,6 +79,13 @@ export default {
}
},
saveTask() {
// When only saving with enter, the focusout event is called as well. This then leads to the saveTask
// method being called twice, overriding some task attributes in the second run.
// If we simply check if we're already in the process of saving, we can prevent that.
if (this.saving) {
return
}
this.saving = true
this.$store.dispatch('tasks/update', this.task)