Skip to content

Commit

Permalink
fix restrictions overlapping on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-luger committed Sep 19, 2024
1 parent 9e2f376 commit 2ffcee5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ function FlipRestrictionList(props: Props) {
}
return defaultHeight + margin + tags + filterCount * 40
}
return Math.max(getCellHeight(index * 2), getCellHeight(index * 2 + 1))
return singleColumn ? getCellHeight(index) : Math.max(getCellHeight(index * 2), getCellHeight(index * 2 + 1))
}}
width={width}
style={{ overflowX: 'hidden' }}
Expand Down

0 comments on commit 2ffcee5

Please sign in to comment.