mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 08:14:25 +08:00
fix transaction list not display after expand the month transaction list
This commit is contained in:
@@ -1274,9 +1274,9 @@ export const useTransactionsStore = defineStore('transactions', () => {
|
||||
return services.getTransactionPictureUrlWithToken(pictureInfo.originalUrl, disableBrowserCache);
|
||||
}
|
||||
|
||||
function collapseMonthInTransactionList({ month, collapse }: { month: TransactionMonthList, collapse: boolean }): void {
|
||||
if (month) {
|
||||
month.opened = !collapse;
|
||||
function collapseMonthInTransactionList({ monthList, collapse }: { monthList: TransactionMonthList, collapse: boolean }): void {
|
||||
if (monthList) {
|
||||
monthList.opened = !collapse;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user