1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-04 04:55:20 +02:00

Move to 3 decimal place precision for loans (#2245)

* Move to 3 decimal place precision for loans

* kick for tests

* unkick
This commit is contained in:
Alex Hatzenbuhler 2025-05-16 10:24:32 -05:00 committed by GitHub
parent 5efa8268f6
commit 6917cecf33
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@
<%= summary_card title: t(".interest_rate") do %> <%= summary_card title: t(".interest_rate") do %>
<% if account.loan.interest_rate.present? %> <% if account.loan.interest_rate.present? %>
<%= number_to_percentage(account.loan.interest_rate, precision: 2) %> <%= number_to_percentage(account.loan.interest_rate, precision: 3) %>
<% else %> <% else %>
<%= t(".unknown") %> <%= t(".unknown") %>
<% end %> <% end %>