Commit 75fc0c70 by Torkel Ödegaard

Merge pull request #256 from bobrik/undefined-length-fix

Fixed annoying undefined length error
parents b1b54740 e3b046ae
...@@ -318,9 +318,9 @@ function (angular, app, $, _, kbn, moment, timeSeries) { ...@@ -318,9 +318,9 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
if (last - from < -10000) { if (last - from < -10000) {
$scope.datapointsOutside = true; $scope.datapointsOutside = true;
} }
}
$scope.datapointsCount += datapoints.length; $scope.datapointsCount += datapoints.length;
}
return series; return series;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment