Commit c928618d by Clicky

Formatting.

parent 3cc83ced
......@@ -218,7 +218,9 @@ function (angular, _, kbn) {
}
});
datapoints = _.map(_.pairs(datapoints), function(values) {
return [values[0], _.map(values[1], function (point) { return [isNaN(point[index]) ? null : point[index], point[timeCol]]; }) ];
return [values[0], _.map(values[1], function (point) {
return [isNaN(point[index]) ? null : point[index], point[timeCol]];
})];
});
_.each(datapoints, function(values) {
......
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