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
@ -264,7 +264,10 @@
|
||||
}
|
||||
|
||||
// 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
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user