Merge pull request #417 from nickago/hotfix

HOTFIX: Fixed mixed case typo
Этот коммит содержится в:
Harrison Healey
2015-08-20 10:57:11 -04:00
родитель 2915b09d0f 44648e77e3
Коммит 47bff0ac16

Просмотреть файл

@@ -3,7 +3,7 @@
module.exports = React.createClass({
render: function() {
var clientError = this.props.clientError ? <div className='form-group'><label className='col-sm-12 has-error'>{ this.props.clientError }</label></div> : null;
var clientError = this.props.client_error ? <div className='form-group'><label className='col-sm-12 has-error'>{ this.props.client_error }</label></div> : null;
var server_error = this.props.server_error ? <div className='form-group'><label className='col-sm-12 has-error'>{ this.props.server_error }</label></div> : null;
var inputs = this.props.inputs;