Remember menu state

This commit is contained in:
Jan Bader 2022-01-31 14:43:49 +00:00
parent 136f15badc
commit e5fe3d06c4

View File

@ -184,7 +184,8 @@ store.subscribe((mutation, state) => {
Budgets: state.Budgets, Budgets: state.Budgets,
Accounts: state.Accounts, Accounts: state.Accounts,
CurrentBudgetID: state.CurrentBudgetID, CurrentBudgetID: state.CurrentBudgetID,
CurrentAccountID: state.CurrentAccountID CurrentAccountID: state.CurrentAccountID,
ShowMenu: state.ShowMenu
} }
localStorage.setItem("store", JSON.stringify(persistedState)); localStorage.setItem("store", JSON.stringify(persistedState));
}) })