diff --git a/src/views/list/ListWrapper.vue b/src/views/list/ListWrapper.vue index f26a3ee39..62e7015bb 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