fix: pop sound not saved and played when marking tasks done
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user