1
0

fix: use async action to change current list

This commit is contained in:
Dominik Pschenitschni
2021-10-16 20:44:39 +02:00
parent 7f5f44d7f0
commit a60ad77bdc
6 changed files with 8 additions and 8 deletions

View File

@ -510,7 +510,7 @@ export default {
},
parent: {
handler(parent) {
this.$store.commit(CURRENT_LIST, parent !== null ? parent.list : this.currentList)
this.$store.dispatch(CURRENT_LIST, parent !== null ? parent.list : this.currentList)
},
immediate: true,
},