Skip to content

Commit

Permalink
fix: Use force explicitly specified width.
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci committed Oct 6, 2023
1 parent 54613ec commit f5bffbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export const
key={name || `${componentKey}-${i}`}
data-visible={visible}
className={height === '1' ? css.fullHeight : ''}
style={{ ...visibleStyles, width, alignSelf, flexGrow: shouldParentGrow ? 1 : undefined }}
style={{ ...visibleStyles, width, minWidth: width, alignSelf, flexGrow: shouldParentGrow ? 1 : undefined }}
>
<XComponent model={m} />
</div>
Expand Down

0 comments on commit f5bffbe

Please sign in to comment.