Skip to content

Commit

Permalink
fix: finestTemporalGrainFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Oct 11, 2023
1 parent b97f8f0 commit 1761e5b
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 1761e5b

Please sign in to comment.