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
For array-type properties where individual elements are of type exact or shape, and each element accepts component-type sub-properties, assigning None to this array property can lead to some vague error messages. For example, with dcc.Dropdown:
importdashfromdashimporthtml, dccapp=dash.Dash(__name__)
app.layout=html.Div(
[
dcc.Dropdown(
placeholder="Currently, there are no selectable options", options=None
)
],
style={"padding": 50},
)
if__name__=="__main__":
app.run(debug=True)