Skip to content

Commit

Permalink
fix: finestTemporalGrainFormatter (apache#25618)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Oct 11, 2023
1 parent 63964bb commit 62bffaf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ export default function PluginFilterSelect(props: PluginFilterSelectProps) {
const labelFormatter = useMemo(
() =>
getDataRecordFormatter({
timeFormatter: finestTemporalGrainFormatter(data.map(el => el.col)),
timeFormatter: finestTemporalGrainFormatter(data.map(el => el[col])),
}),
[data],
[data, col],
);

const updateDataMask = useCallback(
Expand Down

0 comments on commit 62bffaf

Please sign in to comment.