From 2ca8a09fc4a829b84b0dfa86b6ccf3d2ccf02046 Mon Sep 17 00:00:00 2001 From: Max Ehrlicher-Schmidt Date: Sat, 26 Dec 2020 22:46:01 +0100 Subject: [PATCH] Remove console log --- src/app/helperFunctions/customTableFilterFunction.ts | 1 - 1 file changed, 1 deletion(-) 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) ||