Skip to content

Commit

Permalink
Update ObjectFieldTemplate.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
pjb7687 authored Dec 20, 2020
1 parent 5ca4115 commit a01b9e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ObjectFieldTemplate = ({
)}
<Container fluid className="p-0">
{properties.map((element: any, index: number) => (
<Row key={index} style={{ marginBottom: "10px" }} className={(element.content.uiSchema["ui:widget"] === "hidden")?"d-none":undefined} >
<Row key={index} style={{ marginBottom: "10px" }} className={(element.content.props.uiSchema["ui:widget"] === "hidden")?"d-none":undefined} >
<Col xs={12}> {element.content}</Col>
</Row>
))}
Expand Down

0 comments on commit a01b9e3

Please sign in to comment.