From a055a3ea52488287377920aba530eda9de15d3dc Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 27 Feb 2022 15:20:13 +0100 Subject: [PATCH] fix: lint --- src/views/list/ListWrapper.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/list/ListWrapper.vue b/src/views/list/ListWrapper.vue index f26a3ee3..62e7015b 100644 --- a/src/views/list/ListWrapper.vue +++ b/src/views/list/ListWrapper.vue @@ -95,12 +95,12 @@ const currentList = computed(() => { // of it, most likely due to the rights not being properly populated. watch( () => props.listId, - (listId, prevListId) => { + (listId) => { loadList(listId) }, { immediate: true, - } + }, ) // call the method again if the listId changes