Skip to content

Commit 23992e4

Browse files
authored
StatsHouse UI: fix no columns event in tooltip (#1986)
1 parent c92342d commit 23992e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

statshouse-ui/src/hooks/useEventTagColumns2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ export type UseEventTagColumnReturn2 = {
6363
};
6464

6565
export function useEventTagColumns2(plot?: PlotParams, selectedOnly: boolean = false): UseEventTagColumnReturn2[] {
66-
const meta = useMetricMeta(plot?.metricName ?? '');
66+
const meta = useMetricMeta(plot?.metricName ?? '', true);
6767
return useMemo(() => getEventTagColumns(plot, meta, selectedOnly), [meta, plot, selectedOnly]);
6868
}

0 commit comments

Comments
 (0)