Skip to content

Commit

Permalink
refactor: handle overflow in menulist
Browse files Browse the repository at this point in the history
  • Loading branch information
cpvalente committed Feb 2, 2025
1 parent c3d66f5 commit 527f6ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function MultiOption(props: EditFormMultiOptionProps) {
<MenuButton as={Button} variant='ontime-subtle-white' position='relative' width='fit-content' fontWeight={400}>
{paramField.title} <IoChevronDown style={{ display: 'inline' }} />
</MenuButton>
<MenuList>
<MenuList overflow='auto' maxHeight='200px'>
<MenuOptionGroup
type='checkbox'
value={paramState}
Expand Down

0 comments on commit 527f6ce

Please sign in to comment.