From 6989c6332db273ace53525858a9c3eaf4762f374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 1 Sep 2015 13:04:59 +0200 Subject: [PATCH] fix(influxdb): fixed issue in last commit --- public/app/plugins/datasource/influxdb/queryCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/influxdb/queryCtrl.js b/public/app/plugins/datasource/influxdb/queryCtrl.js index 47f294ff6e7..186ffaf1a11 100644 --- a/public/app/plugins/datasource/influxdb/queryCtrl.js +++ b/public/app/plugins/datasource/influxdb/queryCtrl.js @@ -180,7 +180,7 @@ function (angular, _, InfluxQueryBuilder) { $scope.getFieldSegments = function() { var fieldsQuery = $scope.queryBuilder.buildExploreQuery('FIELDS'); return $scope.datasource.metricFindQuery(fieldsQuery) - .then($scope.transformToSegments) + .then($scope.transformToSegments(false)) .then(null, $scope.handleQueryError); };