fix: skipReadOnly/skipWritOnly not passing down to nested array

This commit is contained in:
Roman Hotsiy 2018-03-05 14:08:58 +02:00
parent 8926dd457c
commit 6df8127e77
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -10,7 +10,7 @@ export class ArraySchema extends React.PureComponent<SchemaProps> {
return (
<div>
<ArrayOpenningLabel> Array </ArrayOpenningLabel>
<Schema schema={itemsSchema} />
<Schema {...this.props} schema={itemsSchema} />
<ArrayClosingLabel />
</div>
);