Skip to content

Commit 6df8127

Browse files
committed
fix: skipReadOnly/skipWritOnly not passing down to nested array
1 parent 8926dd4 commit 6df8127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Schema/ArraySchema.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class ArraySchema extends React.PureComponent<SchemaProps> {
1010
return (
1111
<div>
1212
<ArrayOpenningLabel> Array </ArrayOpenningLabel>
13-
<Schema schema={itemsSchema} />
13+
<Schema {...this.props} schema={itemsSchema} />
1414
<ArrayClosingLabel />
1515
</div>
1616
);

0 commit comments

Comments
 (0)