ui: use more precision for comparison percentage

This commit is contained in:
Eman Resu 2026-02-01 01:17:01 -05:00
commit 7b0f3b18a0

View file

@ -206,7 +206,7 @@ const ComparisonView: Component<ComparisonViewProps> = props => {
<Show when={!row.isReduction}>
<ArrowUp size={14} />
</Show>
{Math.abs(row.change).toFixed(1)}%
{Math.abs(row.change).toFixed(2)}%
</span>
</Show>
}