AutosuggestTextarea: bind this
, fix crash in older browsers
This commit is contained in:
parent
de375cdb15
commit
f244bd3ce1
1 changed files with 2 additions and 1 deletions
|
@ -157,7 +157,8 @@ class AutosuggestTextarea extends ImmutablePureComponent<IAutosuggesteTextarea>
|
||||||
if (lastTokenUpdated && !valueUpdated) {
|
if (lastTokenUpdated && !valueUpdated) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
return super.shouldComponentUpdate!(nextProps, nextState, undefined);
|
// https://stackoverflow.com/a/35962835
|
||||||
|
return super.shouldComponentUpdate!.bind(this)(nextProps, nextState, undefined);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue