Skip to content

Commit

Permalink
fix: avoid overflow of select block in table column filter when the o…
Browse files Browse the repository at this point in the history
…ptions are wider than the column head
  • Loading branch information
soslayando committed Oct 24, 2024
1 parent 084763b commit dc67dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/table/src/filters/common/FilterContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface FilterContainerProps {
export const FilterContainer: React.FC<FilterContainerProps> = ({
children,
}) => (
<HFlex spacing="cmp-xxs" flex="1 1 auto">
<HFlex spacing="cmp-xxs" flex="1 1 auto" maxWidth="100%">
{children}
</HFlex>
);

0 comments on commit dc67dd5

Please sign in to comment.