Merge pull request #6 from llakala/main

ui: use more precision for comparison percentage
This commit is contained in:
raf 2026-02-07 12:21:57 +03:00 committed by GitHub
commit 43aae7f9ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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>
}