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.