We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4018b97 commit b85936eCopy full SHA for b85936e
src/app/components/Tree.tsx
@@ -3,7 +3,7 @@ import JSONTree from 'react-json-tree';
3
4
const getItemString = (type, data:{state?:object|string, name:string, children:[]}) => {
5
if (data && data.name) {
6
- return <span>{name}</span>;
+ return <span>{data.name}</span>;
7
}
8
return <span />;
9
};
0 commit comments