diff --git a/client/src/components/Filters/CustomRules.tsx b/client/src/components/Filters/CustomRules.tsx index 24a3b044..edafff42 100644 --- a/client/src/components/Filters/CustomRules.tsx +++ b/client/src/components/Filters/CustomRules.tsx @@ -49,11 +49,7 @@ class CustomRules extends Component { }; handleCheck = (values: FilteringCheckFormValues) => { - const filteredValues = Object.fromEntries( - Object.entries(values).filter(([_, value]) => value !== undefined && value !== '') - ); - - this.props.checkHost(filteredValues); + this.props.checkHost(values); }; onScroll = (e: any) => syncScroll(e, this.ref);