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
"""Creates a collapsible box with a large header label.
Keyword arguments:
- children (a list of or a singular dash component, string or number; required):
The children of this component.
...
"""
However, if we pass anything other than a list as children argument, we are presented with the error:
***\site-packages\webviz_core_components\wrapped_components\collapsive_header.py", line 27, in __init__
self.children = [
TypeError: can only concatenate list (not "Div") to list
which is caused by not inspecting the children argument before assigning it:
From the docstring of CollapsiveHeader:
However, if we pass anything other than a list as children argument, we are presented with the error:
which is caused by not inspecting the children argument before assigning it:
The text was updated successfully, but these errors were encountered: