mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-13 06:43:49 +00:00
Merge pull request #6 from llakala/main
ui: use more precision for comparison percentage
This commit is contained in:
commit
43aae7f9ff
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ const ComparisonView: Component<ComparisonViewProps> = props => {
|
||||||
<Show when={!row.isReduction}>
|
<Show when={!row.isReduction}>
|
||||||
<ArrowUp size={14} />
|
<ArrowUp size={14} />
|
||||||
</Show>
|
</Show>
|
||||||
{Math.abs(row.change).toFixed(1)}%
|
{Math.abs(row.change).toFixed(2)}%
|
||||||
</span>
|
</span>
|
||||||
</Show>
|
</Show>
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue