Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
fixed bug #7 latency over time showing only median for p scores
Browse files Browse the repository at this point in the history
  • Loading branch information
cfryerdev committed Mar 25, 2022
1 parent 54b2ba5 commit 85ce3d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/graph_latency.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 85ce3d3

Please sign in to comment.