applications: fix category match check when filtering elements (#76462)
gitea/hobo/pipeline/head This commit looks good Details

This commit is contained in:
Frédéric Péters 2023-04-10 09:23:33 +02:00
parent fba64847fa
commit bcb7a28797
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
container.show();
} else {
$(elem).hide();
if (!$('label:visible', container).lenght) {
if (!$('label:visible', container).length) {
container.hide();
}
}