* public/v3/components/bar-graph-group.js:
(BarGraphGroup.prototype._computeRange):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@216651
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2017-05-10 Ryosuke Niwa <rniwa@webkit.org>
+ 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 <rniwa@webkit.org>
+
Build fix after r215633.
* public/v3/models/test-group.js:
}
if (entry.interval) {
for (const value of entry.interval) {
+ if (isNaN(value))
+ continue;
min = Math.min(min, value);
max = Math.max(max, value);
}