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