Merge branch 'vue3' into feature/vue3-async-await

# Conflicts:
#	src/i18n/index.js
#	src/store/modules/labels.js
#	src/store/modules/tasks.js
#	src/views/list/views/Kanban.vue
#	src/views/tasks/ShowTasks.vue
#	src/views/tasks/TaskDetailView.vue
This commit is contained in:
Dominik Pschenitschni 2021-10-17 16:06:58 +02:00
commit 2ac3d29c13
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
14 changed files with 223 additions and 158 deletions

View file

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