From 85ce3d33a3e773950c6de7cae7718ec60a5e71fd Mon Sep 17 00:00:00 2001 From: Chris Fryer Date: Fri, 25 Mar 2022 08:14:50 -0600 Subject: [PATCH] fixed bug #7 latency over time showing only median for p scores --- src/components/graph_latency.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/graph_latency.jsx b/src/components/graph_latency.jsx index 7b6efb8..e1f1677 100644 --- a/src/components/graph_latency.jsx +++ b/src/components/graph_latency.jsx @@ -50,14 +50,14 @@ export default ({ data }) => { }); datasets.push({ label: "95th Percentile", - data: median, + data: p95s, fill: false, borderColor: colors.p95s, yAxisID: "y-axis-0" }); datasets.push({ label: "99th Percentile", - data: median, + data: p99s, fill: false, borderColor: colors.p99s, yAxisID: "y-axis-0"