1
0

fix: pop sound not saved and played when marking tasks done

This commit is contained in:
kolaente
2022-02-26 14:48:46 +01:00
parent 553fd54f78
commit c06cc6ad7a
3 changed files with 13 additions and 8 deletions

View File

@ -104,11 +104,12 @@ export default {
async toggleTaskDone(task) {
this.loadingInternal = true
try {
const done = !task.done
await this.$store.dispatch('tasks/update', {
...task,
done: !task.done,
done,
})
if (task.done) {
if (done) {
playPop()
}
} finally {