Skip to content

Commit

Permalink
Fix #6404 : Version dropdown on download page doesn't scroll on overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MohitKambli committed Mar 3, 2024
1 parent e812083 commit e38fd53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/Common/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ const Select: FC<SelectProps> = ({
<Primitive.Content
position={inline ? 'popper' : 'item-aligned'}
className={classNames(styles.dropdown, { [styles.inline]: inline })}
style={{ maxHeight: '200px', overflowY: 'auto' }}
>
<Primitive.Viewport>
{mappedValues.map(({ label, items }, key) => (
Expand Down

0 comments on commit e38fd53

Please sign in to comment.