Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: dropdown placement for cascading filters popover #17046

Merged
merged 14 commits into from
Oct 22, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ const StyledPill = styled(Pill)`

const ContentWrapper = styled.div`
max-height: 700px;
overflow-y: auto;
.ant-select-dropdown {
// ensures dropdown positions correctly
top: 36px !important;
pkdotson marked this conversation as resolved.
Show resolved Hide resolved
}
`;

const CascadePopover: React.FC<CascadePopoverProps> = ({
Expand Down