Show available income in Budgeting header
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-03-04 21:31:13 +00:00
parent caf39fe5ea
commit 442e87234c
4 changed files with 16 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ export const useTransactionsStore = defineStore("budget/transactions", {
return reconciledBalance;
},
TransactionsList(state): Transaction[] {
const accountsStore = useAccountStore()
const accountsStore = useAccountStore()
return accountsStore.CurrentAccount!.Transactions.map(x => {
return this.Transactions.get(x)!
});