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,
|
loading: false,
|
||||||
loadingModule: null,
|
loadingModule: null,
|
||||||
// This is used to highlight the current list in menu for all list related views
|
// This is used to highlight the current list in menu for all list related views
|
||||||
currentList: {id: 0},
|
currentList: {
|
||||||
|
id: 0,
|
||||||
|
isArchived: false,
|
||||||
|
},
|
||||||
background: '',
|
background: '',
|
||||||
hasTasks: false,
|
hasTasks: false,
|
||||||
menuActive: true,
|
menuActive: true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue