diff --git a/src/app/helperFunctions/customTableFilterFunction.ts b/src/app/helperFunctions/customTableFilterFunction.ts index a8a18b6..aea7cfd 100644 --- a/src/app/helperFunctions/customTableFilterFunction.ts +++ b/src/app/helperFunctions/customTableFilterFunction.ts @@ -28,7 +28,6 @@ export function customTableFilterFunction(data: any, filter: any) { if (!filterElement.options.caseSensitive) { searchString = searchString.toLowerCase().replace(/\s/g, ''); dataElement = dataElement.toLowerCase().replace(/\s/g, ''); - console.log(searchString, dataElement); } if ( (filterElement.options.exact && dataElement !== searchString) ||