Skip to content

Commit

Permalink
fix: skipReadOnly/skipWritOnly not passing down to nested array
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Mar 5, 2018
1 parent 8926dd4 commit 6df8127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Schema/ArraySchema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
);
Expand Down

0 comments on commit 6df8127

Please sign in to comment.