mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-15 15:37:33 +08:00
fix the incorrect title of categories
This commit is contained in:
@@ -69,8 +69,8 @@ export function useTransactionListPageBase() {
|
||||
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[]>>(() => {
|
||||
const primaryCategories: Record<number, TransactionCategory[]> = {};
|
||||
const allPrimaryCategories = computed<Record<string, TransactionCategory[]>>(() => {
|
||||
const primaryCategories: Record<string, TransactionCategory[]> = {};
|
||||
|
||||
for (const categoryType in transactionCategoriesStore.allTransactionCategories) {
|
||||
if (!Object.prototype.hasOwnProperty.call(transactionCategoriesStore.allTransactionCategories, categoryType)) {
|
||||
|
||||
Reference in New Issue
Block a user