fix: currentList typing

This commit is contained in:
Dominik Pschenitschni 2022-01-30 14:05:39 +01:00
parent 57965b1ea3
commit a9fb24aa35
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 4 additions and 1 deletions

View File

@ -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,