Skip to content

Commit

Permalink
Merge pull request #174 from sangoma/fix-disabled
Browse files Browse the repository at this point in the history
Fix code typo on disabled propType for tokenizer and typeahead components
  • Loading branch information
fmoo committed Mar 30, 2016
2 parents 321db82 + 341df83 commit 7b1617d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tokenizer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ var TypeaheadTokenizer = React.createClass({
<Typeahead ref="typeahead"
className={classList}
placeholder={this.props.placeholder}
disabled={this.props.disable}
disabled={this.props.disabled}
inputProps={this.props.inputProps}
allowCustomValues={this.props.allowCustomValues}
customClasses={this.props.customClasses}
Expand Down
2 changes: 1 addition & 1 deletion src/typeahead/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ var Typeahead = React.createClass({
<InputElement ref="entry" type="text"
{...this.props.inputProps}
placeholder={this.props.placeholder}
disabled={this.props.disable}
disabled={this.props.disabled}
className={inputClassList}
value={this.state.entryValue}
defaultValue={this.props.defaultValue}
Expand Down

0 comments on commit 7b1617d

Please sign in to comment.