Fixed a small typo in the Object Field Template section (#1057)

This commit is contained in:
Jonathan Grimmtjärn
2018-10-19 22:30:21 +02:00
committed by Ethan Glasser-Camp
parent f9c70314d5
commit 04cd62749d

View File

@@ -1031,7 +1031,7 @@ function ObjectFieldTemplate(props) {
<div>
{props.title}
{props.description}
{props.properties.map(element => <div className="property-wrapper">{element.children}</div>)}
{props.properties.map(element => <div className="property-wrapper">{element.content}</div>)}
</div>
);
}