fix: currentList typing
This commit is contained in:
parent
57965b1ea3
commit
a9fb24aa35
1 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue