diff --git a/src/js/index.js b/src/js/index.js index 827fb92bb..59c80c9d2 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -208,7 +208,10 @@ app.filter('appSearchFilter', function () { return function appSearchFilter(apps, appSearch) { return apps.filter(function (app) { if (!appSearch) return true; - return app.fqdn.indexOf(appSearch) !== -1 || (app.label && app.label.indexOf(appSearch) !== -1); + appSearch = appSearch.toLowerCase(); + return app.fqdn.indexOf(appSearch) !== -1 + || (app.label && app.label.toLowerCase().indexOf(appSearch) !== -1) + || (app.manifest.title && app.manifest.title.toLowerCase().indexOf(appSearch) !== -1); }); }; });