Fix single line naming

This commit is contained in:
Clicky 2014-05-22 16:52:34 -07:00
parent f231af07f9
commit 4a4708e3fd

View File

@ -194,7 +194,8 @@ function (angular, _, kbn) {
});
_.each(datapoints, function(values) {
if (values[0] == null) {
// this gets stringified on its way out of _.pair... sigh
if (values[0] == "null") {
output.push({ target: target, datapoints: values[1]});
} else {
output.push({ target: values[0] + "-" + target, datapoints: values[1] });