Skip to content

Commit

Permalink
fix(HasManyFieldsRow): adds minWidth: 0 to HasManyFieldsRow to allow …
Browse files Browse the repository at this point in the history
…it to be smaller then it's content
  • Loading branch information
mdalpozzo authored and Brian-Holland committed Aug 23, 2024
1 parent 6790e2f commit 7754150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/HasManyFields/HasManyFieldsRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const HasManyFieldsRow = ({

return (
<Row className={classNames} {...props}>
<Col>{children}</Col>
<Col style={{ minWidth: 0 }}>{children}</Col>
{deletable && (
<Col xs="auto" className="js-delete-col ps-3 d-flex">
{button}
Expand Down

0 comments on commit 7754150

Please sign in to comment.