瀏覽代碼

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() {
+      if ($scope.agg.type === 'cardinality') {
+        return $scope.getFields();
+      }
       return $scope.getFields({$fieldType: 'number'});
     };