You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the tree data is an array instead of a dict, the Dash component does not work
the_tree = { 'title': 'top', 'children': [ { 'title': 'kid1' }] } works.
the_tree = [ { 'title': 'top', 'children': [ { 'title': 'kid1' }] } ] does not.
When the tree data is an array instead of a dict, the Dash component does not work
the_tree = { 'title': 'top', 'children': [ { 'title': 'kid1' }] } works.
the_tree = [ { 'title': 'top', 'children': [ { 'title': 'kid1' }] } ] does not.
The I tried to copy/paste the exact same trees as in the ant design examples. See https://ant.design/components/tree/ .
The text was updated successfully, but these errors were encountered: