From e39b87f44c52668c72298bf244182f9d8126f53f Mon Sep 17 00:00:00 2001 From: protitude Date: Thu, 18 Jul 2024 17:40:38 -0600 Subject: [PATCH] table_search: phpcs fix --- js/table_search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/table_search.js b/js/table_search.js index 7db6a5f..83fa1ea 100644 --- a/js/table_search.js +++ b/js/table_search.js @@ -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) {