mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Make null check strict
Appeases JSHint. ESLint has a nice `smart` option for `eqeqeq` rule: https://eslint.org/docs/rules/eqeqeq#smart
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
this.trigger('update');
|
||||
},
|
||||
render: function() {
|
||||
if (this.source == null) {
|
||||
if (this.source === null) {
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user