From 708b0576340e70c4a9a0e52a97cc7889ce67e8aa Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 25 Jul 2020 15:07:22 +0200 Subject: [PATCH] Add more debugging when loading lists or buckets --- src/views/list/ShowList.vue | 2 +- src/views/list/views/Kanban.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/list/ShowList.vue b/src/views/list/ShowList.vue index cb70bb348..0791c022a 100644 --- a/src/views/list/ShowList.vue +++ b/src/views/list/ShowList.vue @@ -112,7 +112,7 @@ return } - console.debug('Loading list, $route.name = ', this.$route.name, ', $route.params = ', this.$route.params) + console.debug(`Loading list, $route.name = ${this.$route.name}, $route.params =`, this.$route.params, `, listLoaded = ${this.listLoaded}, currentList = `, this.currentList) // We create an extra list object instead of creating it in this.list because that would trigger a ui update which would result in bad ux. let list = new ListModel({id: this.$route.params.listId}) diff --git a/src/views/list/views/Kanban.vue b/src/views/list/views/Kanban.vue index fa217c4ee..3e7e75235 100644 --- a/src/views/list/views/Kanban.vue +++ b/src/views/list/views/Kanban.vue @@ -268,7 +268,7 @@ return } - console.debug('Loading buckets, loadedListId = ', this.loadedListId) + console.debug(`Loading buckets, loadedListId = ${this.loadedListId}, $route.params =`, this.$route.params) this.$store.dispatch('kanban/loadBucketsForList', this.$route.params.listId) .catch(e => {