diff --git a/src/js/index.js b/src/js/index.js index 9993675a7..64da081c3 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -268,7 +268,8 @@ app.filter('appSearchFilter', function () { 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); + || (app.manifest.title && app.manifest.title.toLowerCase().indexOf(appSearch) !== -1) + || (appSearch.length >=6 && app.id.indexOf(appSearch) !== -1); }); }; });