Skip to content

Commit

Permalink
fix: set MaxHeight to "more filters" in working lists
Browse files Browse the repository at this point in the history
  • Loading branch information
alaa-yahia committed Jun 28, 2024
1 parent 9b6f6db commit f8dc18f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ const getStyles = (theme: Theme) => ({
textTransform: 'none',
},
menuPaper: {
maxHeight: 30,
maxHeight: 280,
overflowY: 'auto',
},
menuItemRoot: {
padding: 6,
Expand Down Expand Up @@ -184,7 +185,7 @@ class FilterRestMenuPlain extends React.Component<Props, State> {
style={{ transformOrigin: '0 0 0' }}
timeout={{ exit: 0, enter: 200 }}
>
<Paper>
<Paper className={classes.menuPaper}>
<MenuList role="menu">
{this.renderMenuItems()}
</MenuList>
Expand Down

0 comments on commit f8dc18f

Please sign in to comment.