Skip to content

Commit

Permalink
table_search: phpcs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
protitude committed Jul 18, 2024
1 parent 077d88f commit e39b87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/table_search.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
var regExp = new RegExp(inputVal, 'i');
if (regExp.test($(td).text())) {
found = 1; // Set found to true if a match is found
return ; // Break out of the each loop
return; // Break out of the each loop
}
});
if (found == 1) {
Expand Down

0 comments on commit e39b87f

Please sign in to comment.