From a9fb24aa35239be38f255f7eae019519a496b345 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sun, 30 Jan 2022 14:05:39 +0100 Subject: [PATCH] fix: currentList typing --- src/store/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 37c74ae8e..9eb532983 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -37,7 +37,10 @@ export const store = createStore({ loading: false, loadingModule: null, // This is used to highlight the current list in menu for all list related views - currentList: {id: 0}, + currentList: { + id: 0, + isArchived: false, + }, background: '', hasTasks: false, menuActive: true,