Fix comparing the currently loaded list with the current list to make sure to only load the list if needed
This commit is contained in:
parent
708b057634
commit
5521ba7c71
1 changed files with 4 additions and 1 deletions
|
@ -264,7 +264,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only load buckets if we don't already loaded them
|
// Only load buckets if we don't already loaded them
|
||||||
if (this.loadedListId === this.$route.params.listId) {
|
if (
|
||||||
|
this.loadedListId === this.$route.params.listId ||
|
||||||
|
this.loadedListId === parseInt(this.$route.params.listId)
|
||||||
|
) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue