From 6b264844862d6b4162818f416ab320f10e9ca3a6 Mon Sep 17 00:00:00 2001 From: Robert Dyer Date: Tue, 6 May 2025 09:38:22 -0500 Subject: [PATCH] Update utils.js: show percents with up to 4 digits after the decimal --- utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.js b/utils.js index 4550d61..8db0a48 100644 --- a/utils.js +++ b/utils.js @@ -200,7 +200,7 @@ const Utils = { showPercent: function (pct) { return Number(pct).toLocaleString(undefined, - { style: 'percent', maximumFractionDigits: 2 }) + { style: 'percent', maximumFractionDigits: 4 }) }, };