Fix comparing the currently loaded list with the current list to make sure to only load the list if needed
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-07-25 15:10:36 +02:00
parent 708b057634
commit 5521ba7c71
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 1 deletions

View File

@ -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
}