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 => {