fix the parent account not displayed in the account list in the transaction list page

This commit is contained in:
MaysWind
2025-02-19 23:04:27 +08:00
parent 7fca519fd9
commit a9eaf011cd
2 changed files with 25 additions and 1 deletions
@@ -66,7 +66,7 @@ export function useTransactionListPageBase() {
const allDateRanges = computed<LocalizedDateRange[]>(() => getAllDateRanges(DateRangeScene.Normal, true, !!accountsStore.getAccountStatementDate(query.value.accountIds)));
const allAccounts = computed<Account[]>(() => accountsStore.allPlainAccounts);
const allAccounts = computed<Account[]>(() => accountsStore.allMixedPlainAccounts);
const allAccountsMap = computed<Record<string, Account>>(() => accountsStore.allAccountsMap);
const allAvailableAccountsCount = computed<number>(() => accountsStore.allAvailableAccountsCount);
const allPrimaryCategories = computed<Record<number, TransactionCategory[]>>(() => {