fix(ui/ScrollableArea): overflow indicator not working
parent
a4d20e7d65
commit
905bc23f87
|
@ -35,7 +35,7 @@ const ScrollableArea = ({ children, className }: PropsWithChildren<{ className?:
|
|||
className // Pass in your max-w / max-h
|
||||
)}>
|
||||
{children}
|
||||
{isOverflowingY && <div style={overflowIndicatorStyles} data-testid="overflow-indicator" />}
|
||||
{isOverflowingY && <div data-testid="overflow-indicator" />}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue