Skip to content

Commit

Permalink
fix dependency warnings for histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
bobular committed Nov 18, 2024
1 parent 1267fa7 commit 65004b3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -894,17 +894,18 @@ function HistogramViz(props: VisualizationProps<Options>) {
? { dependentAxisRange: minPosMax }
: {}),
},
vizConfig,
{
independentAxisRange: vizConfig.independentAxisRange,
dependentAxisRange: vizConfig.dependentAxisRange,
},
{}, // no overrides
true // use inclusive less than equal for the range min
),
[
defaultUIState,
dependentMinPosMax,
minPosMax,
vizConfig.independentAxisRange,
vizConfig.dependentAxisRange,
vizConfig.independentAxisValueSpec,
vizConfig.dependentAxisValueSpec,
]
);

Expand Down

0 comments on commit 65004b3

Please sign in to comment.