Skip to content

Commit 9b90bae

Browse files
humitosagjohnson
authored andcommitted
eslint
1 parent 27dcd33 commit 9b90bae

File tree

1 file changed

+2
-2
lines changed
  • readthedocs/projects/static-src/projects/js

1 file changed

+2
-2
lines changed

readthedocs/projects/static-src/projects/js/import.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ function Account (instance, view) {
9393
self.filtered = ko.computed(function () {
9494
var filter = view.filter_by();
9595
return (
96-
(filter.id && filter.id != self.filter_id()) ||
97-
(filter.type && filter.type != self.filter_type)
96+
(filter.id && filter.id !== self.filter_id()) ||
97+
(filter.type && filter.type !== self.filter_type)
9898
);
9999
});
100100
}

0 commit comments

Comments
 (0)