Closed bnovc closed 4 months ago
Note also the flattened approach doesn't work - it puts these three all on the same level
{
name: `Child Node ${value.length}`,
children: [
],
id: value.length,
parent: element.id,
isBranch: true,
},
{
name: "Another child Node",
children: [],
id: value.length + 1,
parent: element.id,
},
{
name: `Sub Child Node ${value.length}`,
children: [],
id: value.length+2,
parent: value.length
},
We welcome a PR for this.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue was closed automatically since it was marked as stale because it has not had recent activity. Thank you for your contributions.
If you use your example on https://dgreene1.github.io/react-accessible-treeview/docs/examples-MultiSelectCheckboxAsync, but you change it to have nested elements, you get the crash without many clues
I think it would help a lot to include source maps in the distribution to help debug these things.