Update utils.js: show percents with up to 4 digits after the decimal

This commit is contained in:
Robert Dyer
2025-05-06 09:38:22 -05:00
committed by GitHub
parent ec21ae5751
commit 6b26484486
+1 -1
View File
@@ -200,7 +200,7 @@ const Utils = {
showPercent: function (pct) {
return Number(pct).toLocaleString(undefined,
{ style: 'percent', maximumFractionDigits: 2 })
{ style: 'percent', maximumFractionDigits: 4 })
},
};