fix(webapp): display transactions count in cashflow account

This commit is contained in:
a.bouhuolia
2023-05-05 13:54:45 +02:00
parent 54d3188666
commit 06c7ee71b4
2 changed files with 8 additions and 5 deletions

View File

@@ -77,11 +77,13 @@ export function BankAccount({
</BankAccountHeader>
<BankAccountMeta>
<BankAccountMetaLine
title={intl.get('cash_flow.label_account_transcations')}
value={2}
className={clsx({ [Classes.SKELETON]: loading })}
/>
{false && (
<BankAccountMetaLine
title={intl.get('cash_flow.transactions_for_review')}
value={'0'}
className={clsx({ [Classes.SKELETON]: loading })}
/>
)}
<BankAccountMetaLine
title={updatedBeforeText}
className={clsx({ [Classes.SKELETON]: loading })}

View File

@@ -1417,6 +1417,7 @@
"siebar.cashflow": "Cash flow",
"siebar.cashflow.label_cash_and_bank_accounts": "Cash & Bank Accounts",
"cash_flow.label_account_transcations": "Account Transcations",
"cash_flow.transactions_for_review": "Transactions for review",
"cash_flow.label.deposit": "Deposit",
"cash_flow.label.withdrawal": "Withdrawal",
"cash_flow.label.running_balance": "Running balance",