Skip to content

Commit

Permalink
showing field as non metric in the table
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar committed Mar 20, 2023
1 parent ec42cb5 commit 1a276c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export const useDataVisualizerGridData = (
const createNonMetricCards = useCallback(() => {
const allNonMetricFields = dataViewFields.filter((f) => {
return (
f.type !== KBN_FIELD_TYPES.NUMBER &&
(f.type !== KBN_FIELD_TYPES.NUMBER || f.timeSeriesMetric === 'counter') &&
f.displayName !== undefined &&
isDisplayField(f.displayName) === true
);
Expand Down

0 comments on commit 1a276c3

Please sign in to comment.