Again fixed if balance amount is null
This commit is contained in:
@@ -457,7 +457,7 @@ function normalizeMeta(meta) {
|
||||
</p>
|
||||
<span
|
||||
class="font-bold rounded-md px-3 py-2 bg-red-50 text-red-600 border-red-100 tabular-nums"
|
||||
>{{ fmtCurrency(c.account.balance_amount) || "0,00" }}</span
|
||||
>{{ c?.account?.balance_amount ? fmtCurrency(c?.account?.balance_amount) : "0,00" }}</span
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex flex-row gap-2 flex-1 justify-end-safe pr-3">
|
||||
|
||||
Reference in New Issue
Block a user