From e5fe3d06c47b3ecfdbb35fd8505191266fefaf82 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Mon, 31 Jan 2022 14:43:49 +0000 Subject: [PATCH] Remember menu state --- web/src/store/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/store/index.js b/web/src/store/index.js index 261ebab..fa923fc 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -184,7 +184,8 @@ store.subscribe((mutation, state) => { Budgets: state.Budgets, Accounts: state.Accounts, CurrentBudgetID: state.CurrentBudgetID, - CurrentAccountID: state.CurrentAccountID + CurrentAccountID: state.CurrentAccountID, + ShowMenu: state.ShowMenu } localStorage.setItem("store", JSON.stringify(persistedState)); })