Skip to content

Commit

Permalink
Merge pull request #3672 from alitaheri/fix-im-mounted-regression
Browse files Browse the repository at this point in the history
[TextField] Remove call to isMounted
  • Loading branch information
alitaheri committed Mar 12, 2016
2 parents 8087513 + cc495e9 commit 1f27ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TextField/TextField.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ const TextField = React.createClass({
},

select() {
if (this.isMounted()) this._getInputNode().select();
if (this.input) this._getInputNode().select();
},

getValue() {
Expand Down

0 comments on commit 1f27ae0

Please sign in to comment.