diff --git a/ui/src/components/graphs/RequestsGraph.tsx b/ui/src/components/graphs/RequestsGraph.tsx index 67dafe7b3..13db1e498 100644 --- a/ui/src/components/graphs/RequestsGraph.tsx +++ b/ui/src/components/graphs/RequestsGraph.tsx @@ -139,7 +139,7 @@ const RequestsGraph = ({ label: parseLabelValue(label), stroke: `#${labelColor(pickedColors, label)}`, gaps: seriesGaps(from / 1000, to / 1000), - value: (u, v) => (v == null ? '-' : `${v.toPrecision(2)}req/s`), + value: (u, v) => (v == null ? '-' : `${v.toFixed(2)}req/s`), } }), ],