Skip to content

Commit

Permalink
Fix initial open state to prevent undefined type (#1121)
Browse files Browse the repository at this point in the history
open is not required prop for wcc.Dialog, thus initial value was undefined and type in Python was `None`. Resolved by defining initial state False.
  • Loading branch information
jorgenherje authored Oct 3, 2022
1 parent ea2f955 commit b3702ca
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def layout(self) -> List[Component]:
TimeSeriesSettings.Ids.VECTOR_CALCULATOR_DIALOG
),
draggable=True,
open=False,
max_width="lg",
children=[
html.Div(
Expand Down

0 comments on commit b3702ca

Please sign in to comment.