Add more debugging when loading lists or buckets
This commit is contained in:
parent
dc4f85e808
commit
708b057634
2 changed files with 2 additions and 2 deletions
|
@ -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})
|
||||
|
|
|
@ -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 => {
|
||||
|
|
Loading…
Reference in a new issue