Skip to content

Commit

Permalink
Add missing rounding func
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Feb 9, 2024
1 parent 2036069 commit c897c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/frontend/src/JobFootprint.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
const avgs = jm.metric.series.map(jms => jms.statistics.avg)
mv = round(mean(avgs), 2)
} else {
mv = jm.metric.series[0].statistics.avg
mv = round(jm.metric.series[0].statistics.avg, 2)
}
}
Expand Down

0 comments on commit c897c8e

Please sign in to comment.