mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-25 08:09:38 +02:00
fix: use correct delimiter on credit card zero values (#1280)
This commit is contained in:
parent
6288139a41
commit
977da34efc
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
<% end %>
|
||||
|
||||
<%= summary_card title: t(".minimum_payment") do %>
|
||||
<%= format_money(account.credit_card.minimum_payment_money) || Money.new(0, account.currency) %>
|
||||
<%= format_money(account.credit_card.minimum_payment_money || Money.new(0, account.currency)) %>
|
||||
<% end %>
|
||||
|
||||
<%= summary_card title: t(".apr") do %>
|
||||
|
@ -22,6 +22,6 @@
|
|||
<% end %>
|
||||
|
||||
<%= summary_card title: t(".annual_fee") do %>
|
||||
<%= format_money(account.credit_card.annual_fee_money) || Money.new(0, account.currency) %>
|
||||
<%= format_money(account.credit_card.annual_fee_money || Money.new(0, account.currency)) %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue