Fix budgeting not being openable #29

Merged
jacob1123 merged 1 commits from hotfix-budget into master 2022-03-01 09:11:33 +01:00

View File

@ -98,9 +98,12 @@ export const useAccountStore = defineStore("budget/account", {
actions: { actions: {
async SetCurrentAccount(budgetid: string, accountid: string) { async SetCurrentAccount(budgetid: string, accountid: string) {
if (budgetid == null) if (budgetid == null)
return return;
this.CurrentAccountID = accountid; this.CurrentAccountID = accountid;
if (accountid == null)
return;
const account = this.GetAccount(accountid)!; const account = this.GetAccount(accountid)!;
useSessionStore().setTitle(account.Name); useSessionStore().setTitle(account.Name);
await this.FetchAccount(account); await this.FetchAccount(account);