We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c58eea commit c64353cCopy full SHA for c64353c
x-pack/legacy/plugins/maps/public/layers/tooltips/es_aggmetric_tooltip_property.js
@@ -22,7 +22,7 @@ export class ESAggMetricTooltipProperty extends ESTooltipProperty {
22
if (typeof this._rawValue === 'undefined') {
23
return '-';
24
}
25
- if (this._metricField.type === METRIC_TYPE.COUNT) {
+ if (this._metricField.type === METRIC_TYPE.COUNT || this._metricField.type === METRIC_TYPE.UNIQUE_COUNT) {
26
return this._rawValue;
27
28
const indexPatternField = this._indexPattern.fields.getByName(this._metricField.field);
0 commit comments