Allow the creation of new entries

This commit is contained in:
Cássio Zen
2016-08-24 21:36:44 -03:00
parent fd79381160
commit b717874e7b
9 changed files with 73 additions and 29 deletions

View File

@ -11,7 +11,7 @@ export default class StringControl extends React.Component {
}
render() {
return <input value={this.props.value} onChange={this.handleChange}/>;
return <input type="text" value={this.props.value || ''} onChange={this.handleChange}/>;
}
}