зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1849946 - [devtools] Switch to do strict inequality check r=devtools-reviewers,ochameau
Differential Revision: https://phabricator.services.mozilla.com/D187102
This commit is contained in:
Родитель
7b8bd15a92
Коммит
34cef822f7
|
@ -121,7 +121,7 @@ define(function (require, exports, module) {
|
|||
*/
|
||||
shouldComponentUpdate(nextProps) {
|
||||
for (const prop of UPDATE_ON_PROPS) {
|
||||
if (nextProps.member[prop] != this.props.member[prop]) {
|
||||
if (nextProps.member[prop] !== this.props.member[prop]) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче