Remove check for _wrapperState.pendingUpdate.

We can just set it to true regardless.
This commit is contained in:
Sam Beveridge
2016-02-13 12:01:49 -07:00
parent 385cadf8e3
commit 57d59ea344
@@ -236,7 +236,7 @@ function _handleChange(event) {
var props = this._currentElement.props;
var returnValue = LinkedValueUtils.executeOnChange(props, event);
if (this._rootNodeID && !this._wrapperState.pendingUpdate) {
if (this._rootNodeID) {
this._wrapperState.pendingUpdate = true;
}
ReactUpdates.asap(updateOptionsIfPendingUpdateAndMounted, this);