Skip to content

Commit 4ac1271

Browse files
committed
change minheight prop name in chart popover
1 parent a63602c commit 4ac1271

File tree

1 file changed

+3
-3
lines changed
  • src/internal/components/chart-popover

1 file changed

+3
-3
lines changed

src/internal/components/chart-popover/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface ChartPopoverProps extends PopoverProps {
3333
</>)
3434
*/
3535
trackKey?: string | number;
36-
minHeight?: number;
36+
minVisibleBlockSize?: number;
3737

3838
/** Optional container element that prevents any clicks in there from dismissing the popover */
3939
container: Element | null;
@@ -75,7 +75,7 @@ function ChartPopover(
7575
trackKey,
7676
onDismiss,
7777
container,
78-
minHeight,
78+
minVisibleBlockSize,
7979

8080
onMouseEnter,
8181
onMouseLeave,
@@ -129,7 +129,7 @@ function ChartPopover(
129129
trackRef={trackRef}
130130
getTrack={getTrack}
131131
trackKey={trackKey}
132-
minVisibleBlockSize={minHeight}
132+
minVisibleBlockSize={minVisibleBlockSize}
133133
arrow={position => (
134134
<div className={clsx(popoverStyles.arrow, popoverStyles[`arrow-position-${position}`])}>
135135
<div className={popoverStyles['arrow-outer']} />

0 commit comments

Comments
 (0)