From 5521ba7c713ba23940a0522471f692a63a3e5d25 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 25 Jul 2020 15:10:36 +0200 Subject: [PATCH] Fix comparing the currently loaded list with the current list to make sure to only load the list if needed --- src/views/list/views/Kanban.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/list/views/Kanban.vue b/src/views/list/views/Kanban.vue index 3e7e7523..3297b593 100644 --- a/src/views/list/views/Kanban.vue +++ b/src/views/list/views/Kanban.vue @@ -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 }