Skip to content

Commit

Permalink
Not even hiding any services
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalopitz committed Dec 9, 2016
1 parent 054868c commit 168cbe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/actions/BrowserListActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ export default {
data = _.reject(data, (item) => {
return _.includes(existingIds, item.Id);
});
data = _.filter(data, (item) => {
return _.includes(ALLOWED_SERVICES, Number(item.Id)) || item.Auth === 'UserId';
});
// data = _.filter(data, (item) => {
// return _.includes(ALLOWED_SERVICES, Number(item.Id)) || item.Auth === 'UserId';
// });

data = _.orderBy(data, 'Name');

Expand Down

0 comments on commit 168cbe1

Please sign in to comment.