| Index: tracing/tracing/value/histogram.html
|
| diff --git a/tracing/tracing/value/histogram.html b/tracing/tracing/value/histogram.html
|
| index 30979e1fcfdb8179676567c70e0a78c244de3390..25375d216d3ffd9a2ae427514ecc370021cce9ad 100644
|
| --- a/tracing/tracing/value/histogram.html
|
| +++ b/tracing/tracing/value/histogram.html
|
| @@ -352,10 +352,12 @@ tr.exportTo('tr.v', function() {
|
| for (let bin of this.allBins) {
|
| valuesToSkip -= bin.count;
|
| if (valuesToSkip >= 0) continue;
|
| - if (bin.range.min === -Number.MAX_VALUE)
|
| + if (bin.range.min === -Number.MAX_VALUE) {
|
| return bin.range.max;
|
| - if (bin.range.max === Number.MAX_VALUE)
|
| + }
|
| + if (bin.range.max === Number.MAX_VALUE) {
|
| return bin.range.min;
|
| + }
|
| return bin.range.center;
|
| }
|
| return this.allBins[this.allBins.length - 1].range.min;
|
|
|