Title: [216651] trunk/Websites/perf.webkit.org
Revision
216651
Author
[email protected]
Date
2017-05-10 21:23:26 -0700 (Wed, 10 May 2017)

Log Message

Another build fix after r215633 to make the bar graphs render even when the confidence intervals aren't available.

* public/v3/components/bar-graph-group.js:
(BarGraphGroup.prototype._computeRange):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (216650 => 216651)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-05-11 04:22:08 UTC (rev 216650)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-05-11 04:23:26 UTC (rev 216651)
@@ -1,5 +1,12 @@
 2017-05-10  Ryosuke Niwa  <[email protected]>
 
+        Another build fix after r215633 to make the bar graphs render even when the confidence intervals aren't available.
+
+        * public/v3/components/bar-graph-group.js:
+        (BarGraphGroup.prototype._computeRange):
+
+2017-05-10  Ryosuke Niwa  <[email protected]>
+
         Build fix after r215633.
 
         * public/v3/models/test-group.js:

Modified: trunk/Websites/perf.webkit.org/public/v3/components/bar-graph-group.js (216650 => 216651)


--- trunk/Websites/perf.webkit.org/public/v3/components/bar-graph-group.js	2017-05-11 04:22:08 UTC (rev 216650)
+++ trunk/Websites/perf.webkit.org/public/v3/components/bar-graph-group.js	2017-05-11 04:23:26 UTC (rev 216651)
@@ -42,6 +42,8 @@
             }
             if (entry.interval) {
                 for (const value of entry.interval) {
+                    if (isNaN(value))
+                        continue;
                     min = Math.min(min, value);
                     max = Math.max(max, value);
                 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to