Fix task attributes overridden when saving the task title with enter
This commit is contained in:
parent
c4095327ad
commit
2bae8e95e5
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user