Add missing space in property declaration

This commit is contained in:
Fabio Berger 2018-04-11 17:36:01 +09:00
parent 3c0fa0b7e6
commit 1e13e927d0

View File

@ -337,7 +337,7 @@ export class Documentation extends React.Component<DocumentationProps, Documenta
return ( return (
<div key={`property-${property.name}-${property.type.name}`} className="pb3"> <div key={`property-${property.name}-${property.type.name}`} className="pb3">
<code className={`hljs ${constants.TYPE_TO_SYNTAX[this.props.docsInfo.type]}`}> <code className={`hljs ${constants.TYPE_TO_SYNTAX[this.props.docsInfo.type]}`}>
{property.name}: {property.name}:{' '}
<Type type={property.type} sectionName={sectionName} docsInfo={this.props.docsInfo} /> <Type type={property.type} sectionName={sectionName} docsInfo={this.props.docsInfo} />
</code> </code>
{property.source && ( {property.source && (