fix typo
This commit is contained in:
parent
c394ce0925
commit
8af9abec36
|
|
@ -107,13 +107,13 @@ var Validations = React.createClass({
|
|||
<fieldset onChange={this.changeValidation}>
|
||||
<legend>Validation Type</legend>
|
||||
<div>
|
||||
<input name='validaionType' type='radio' value='time' checked={this.props.validationType === 'time'}/>Time
|
||||
<input name='validationType' type='radio' value='time' checked={this.props.validationType === 'time'}/>Time
|
||||
</div>
|
||||
<div>
|
||||
<input name='validaionType' type='radio' value='decimal' checked={this.props.validationType === 'decimal'}/>Decimal
|
||||
<input name='validationType' type='radio' value='decimal' checked={this.props.validationType === 'decimal'}/>Decimal
|
||||
</div>
|
||||
<div>
|
||||
<input name='validaionType' type='radio' value='binary' checked={this.props.validationType === 'binary'}/>Binary
|
||||
<input name='validationType' type='radio' value='binary' checked={this.props.validationType === 'binary'}/>Binary
|
||||
</div>
|
||||
</fieldset>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue