Fixed typo

old
@soyjavi 2015-11-25 11:57:26 +07:00
parent 9de67a44bf
commit 4d52011580
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Form extends React.Component {
return Object.keys(this.props.model).map((field, index) => {
const properties = this.props.model[field];
const Field = Component[properties.kind.toLowerCase()];
return <Field key={index} {...properties} onChange={this.onChange.bind(this, field)} />
return <Field key={index} {...properties} onChange={this.onChange.bind(this, field)} />;
});
}