Преглед изворни кода

Allowing "Unique Count"s of any data type (#7704)

Joseph Pintozzi пре 8 година
родитељ
комит
a37a2259b3
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      public/app/plugins/datasource/elasticsearch/metric_agg.js

+ 3 - 0
public/app/plugins/datasource/elasticsearch/metric_agg.js

@@ -162,6 +162,9 @@ function (angular, _, queryDef) {
     };
     };
 
 
     $scope.getFieldsInternal = function() {
     $scope.getFieldsInternal = function() {
+      if ($scope.agg.type === 'cardinality') {
+        return $scope.getFields();
+      }
       return $scope.getFields({$fieldType: 'number'});
       return $scope.getFields({$fieldType: 'number'});
     };
     };