From 09623619c822b92a69d7b938085dd5fc8c866f4a Mon Sep 17 00:00:00 2001 From: hatz Date: Thu, 15 May 2025 19:20:22 -0500 Subject: [PATCH] Move to 3 decimal place precision for loans --- app/views/loans/_overview.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/loans/_overview.html.erb b/app/views/loans/_overview.html.erb index f04ccc49..e1649583 100644 --- a/app/views/loans/_overview.html.erb +++ b/app/views/loans/_overview.html.erb @@ -11,7 +11,7 @@ <%= summary_card title: t(".interest_rate") do %> <% 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 %> <%= t(".unknown") %> <% end %>