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

Commit

Permalink
Merge pull request #9 from cfryerdev/fix/latency-over-time
Browse files Browse the repository at this point in the history
fixed bug #7 latency over time showing only median for p scores
  • Loading branch information
hassy authored Apr 19, 2022
2 parents 54b2ba5 + 85ce3d3 commit da77464
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 da77464

Please sign in to comment.