This commit is contained in:
Ildar Kamalov
2025-03-11 09:58:13 +03:00
parent bcffb41864
commit 5a33876ac4

View File

@@ -49,11 +49,7 @@ class CustomRules extends Component<CustomRulesProps> {
};
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);