mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-12 14:27:41 +00:00
ui: use more precision for comparison percentage
This commit is contained in:
parent
a37be62288
commit
7b0f3b18a0
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue