We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27dcd33 commit 9b90baeCopy full SHA for 9b90bae
readthedocs/projects/static-src/projects/js/import.js
@@ -93,8 +93,8 @@ function Account (instance, view) {
93
self.filtered = ko.computed(function () {
94
var filter = view.filter_by();
95
return (
96
- (filter.id && filter.id != self.filter_id()) ||
97
- (filter.type && filter.type != self.filter_type)
+ (filter.id && filter.id !== self.filter_id()) ||
+ (filter.type && filter.type !== self.filter_type)
98
);
99
});
100
}
0 commit comments