diff --git a/src/js/index.js b/src/js/index.js index c9c45276b..bbd8c3562 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -234,8 +234,8 @@ app.filter('selectedTagFilter', function () { app.filter('selectedDomainFilter', function () { return function selectedDomainFilter(apps, selectedDomain) { return apps.filter(function (app) { - if (!selectedDomain || app.type === APP_TYPES.LINK) return true; if (selectedDomain._alldomains) return true; // magic domain for single select, see apps.js ALL_DOMAINS_DOMAIN + if (app.type === APP_TYPES.LINK) return false; if (selectedDomain.domain === app.domain) return true; if (app.aliasDomains.find(function (ad) { return ad.domain === selectedDomain.domain; })) return true;