Skip to content

Commit e5b301e

Browse files
- Fixed #4838
1 parent 14fd2e3 commit e5b301e

File tree

5 files changed

+107
-484
lines changed

5 files changed

+107
-484
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ should change the heading of the (upcoming) version to include a major version b
4646
## @rjsf/mui
4747

4848
- Updated `FieldTemplate` to skip label and description rendering for checkbox widgets, fixing ([#4742](https://github.com/rjsf-team/react-jsonschema-form/issues/4742))
49+
- Updated `ArrayFieldItemTemplate` to remove `size='auto'` from the `Grid`, fixing [#4838](https://github.com/rjsf-team/react-jsonschema-form/issues/4838)
4950

5051
## @rjsf/primereact
5152

packages/mui/src/ArrayFieldItemTemplate/ArrayFieldItemTemplate.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function ArrayFieldItemTemplate<
3636
};
3737
return (
3838
<Grid container={true} alignItems='center'>
39-
<Grid size='auto' style={{ overflow: 'auto' }}>
39+
<Grid style={{ overflow: 'auto' }}>
4040
<Box mb={2}>
4141
<Paper elevation={2}>
4242
<Box p={2}>{children}</Box>

0 commit comments

Comments
 (0)