Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Feb 1, 2018
1 parent 1d0e2d9 commit b293472
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions readthedocs/projects/static-src/projects/js/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ function Organization (instance, view) {
self.filter_type = 'org';
self.filtered = ko.computed(function () {
var filter = view.filter_by();
return (filter.id && filter.id != self.filter_id()) || (filter.type && filter.type != self.filter_type);
return (filter.id && filter.id != self.filter_id()) ||
(filter.type && filter.type != self.filter_type);
});
}

Expand All @@ -77,7 +78,8 @@ function Account (instance, view) {
self.filter_type = 'own';
self.filtered = ko.computed(function () {
var filter = view.filter_by();
return (filter.id && filter.id != self.filter_id()) || (filter.type && filter.type != self.filter_type);
return (filter.id && filter.id != self.filter_id()) ||
(filter.type && filter.type != self.filter_type);
});
}

Expand Down

0 comments on commit b293472

Please sign in to comment.