fix: some bank account details hidden

This commit is contained in:
Ahmed Bouhuolia
2024-08-21 21:19:59 +02:00
parent fac55efbc7
commit dffcfe50aa
5 changed files with 46 additions and 10 deletions

View File

@@ -123,7 +123,12 @@ function CashflowBankAccount({
code={account.code}
balance={!isNull(account.amount) ? account.formatted_amount : '-'}
type={account.account_type}
updatedBeforeText={getUpdatedBeforeText(account.createdAt)}
updatedBeforeText={
account.last_feeds_updated_from_now
? `Updated ${account.last_feeds_updated_from_now} ago`
: ''
}
uncategorizedTransactionsCount={account.uncategorized_transactions}
/>
</CashflowAccountAnchor>
</ContextMenu2>