We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to hide certain nodes based on their name. Is that possible without modifying the original object? For example:
const onNodeRender = useCallback(({name, data, isNonenumerable}) => { if (name === "hideMe") { // return something that hides this node; null doesn't work -- it just shows an empty row. } return <ObjectLabel name={name} data={data} isNonenumerable={isNonenumerable} />; }, []);
Thanks, Alvaro
The text was updated successfully, but these errors were encountered:
You can checkout fork that I made - https://github.com/Artboomy/react-inspector/tree/dev/feature%2Fhighlight It has highlight and search functionality. Look for HighlightContext & SearchContext.
Disclaimer: It does modify input object by adding non-iterable symbol fields on original object.
Sorry, something went wrong.
No branches or pull requests
I'd like to hide certain nodes based on their name. Is that possible without modifying the original object? For example:
Thanks,
Alvaro
The text was updated successfully, but these errors were encountered: