react-checkbox-tree
react-checkbox-tree copied to clipboard
Filtering is not working as expected
Filtering of the nodes is working as supposed to be.
But we re unable to select/unselect a node after filtering.
Hi @gaddamsandeeps , Please check out #217 .
Replace filtered.push({ ...node, children }); with filtered.push({...node, ...children.length && {children}});
This fixed all filter problems. Thanks Team.