fix: wrong async order
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2021-10-11 21:40:36 +02:00
parent a3a3ef850c
commit 50fa592aad
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 1 deletions

View File

@ -694,9 +694,9 @@ export default {
}
},
async changeList(list) {
this.$store.commit('kanban/removeTaskInBucket', this.task)
this.task.listId = list.id
await this.saveTask()
this.$store.commit('kanban/removeTaskInBucket', this.task)
},
toggleFavorite() {
this.task.isFavorite = !this.task.isFavorite