diff --git a/src/js/yunohost/controllers/apps.js b/src/js/yunohost/controllers/apps.js index ddb4193e..b7067a57 100644 --- a/src/js/yunohost/controllers/apps.js +++ b/src/js/yunohost/controllers/apps.js @@ -206,7 +206,7 @@ // Check text search var input = jQuery("#filter-app-cards").val().toLowerCase(); - if (jQuery(this).find('.app-title').text().toLowerCase().indexOf(input) <= -1) return false; + if (jQuery(this).find('.app-title, .app-card-desc').text().toLowerCase().indexOf(input) <= -1) return false; // Check subtags var subtag = $(".subtag-selector button.active").data("subtag");