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 c92342d commit 23992e4Copy full SHA for 23992e4
statshouse-ui/src/hooks/useEventTagColumns2.ts
@@ -63,6 +63,6 @@ export type UseEventTagColumnReturn2 = {
63
};
64
65
export function useEventTagColumns2(plot?: PlotParams, selectedOnly: boolean = false): UseEventTagColumnReturn2[] {
66
- const meta = useMetricMeta(plot?.metricName ?? '');
+ const meta = useMetricMeta(plot?.metricName ?? '', true);
67
return useMemo(() => getEventTagColumns(plot, meta, selectedOnly), [meta, plot, selectedOnly]);
68
}
0 commit comments