Update ObjectProperty Component to Improve Layout Flexibility

- Added minWidth property to the style of the ObjectProperty component, enhancing layout adaptability and preventing overflow issues in responsive designs.
This commit is contained in:
Tom Butcher 2026-09-07 01:20:34 +01:00
parent 7df004ac47
commit c29034ff27

View File

@ -727,7 +727,7 @@ const ObjectProperty = ({
// Merge required rule if needed
let mergedFormItemProps = {
...formItemProps,
style: { flexGrow: 1, width: '100%' }
style: { flexGrow: 1, width: '100%', minWidth: 0 }
}
if (required && disabled == false) {
let rules