diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-30 10:42:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 10:42:36 -0700 |
commit | 474d47e841edc709d7a98ee044a711352adf8b6b (patch) | |
tree | ca42d4d5fc8ad93f7f432d643db0c798b6162602 | |
parent | 200bed9277182e40e4ee4bb08b237f1c2d1ae244 (diff) |
Fix max_latency benchmark on zero value (#2247)
-rw-r--r-- | website/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/app.js b/website/app.js index 7af2875b2..23618274b 100644 --- a/website/app.js +++ b/website/app.js @@ -145,7 +145,7 @@ function generate( delete yAxis.min; for (let col of columns) { for (let i = 1; i < col.length; i++) { - if (col[i] == null) { + if (col[i] == null || col[i] === 0) { continue; } col[i] = Math.log10(col[i] * TimeScaleFactor); |