From 1eb19f87645e60cae83dfe7b155718490d0ec37b Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 3 Apr 2022 14:28:41 +0200 Subject: [PATCH] fix: resetting the list when changing from a list view to a non-list view --- src/components/home/contentAuth.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index f62288e28..7da934fbc 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -160,7 +160,7 @@ watch(() => route.name as string, (routeName) => { routeName.startsWith('user.settings') ) ) { - store.dispatch(CURRENT_LIST, null) + store.dispatch(CURRENT_LIST, {list: null}) } })