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

This commit is contained in:
Joseph Pintozzi 2017-03-07 00:36:33 -07:00 committed by Torkel Ödegaard
parent a24ac012c4
commit a37a2259b3

View File

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