Allow search in app description

This commit is contained in:
cyxae 2020-10-19 23:23:47 +02:00 committed by Alexandre Aubin
parent abe3a0454c
commit 3b016baa87

View file

@ -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");