Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nadijagraca committed Jan 20, 2025
1 parent c646cf2 commit 2bc2437
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,12 @@ def test_dropdown_with_all_option(self):
dbc.Label("Title", html_for="dropdown_id"),
dcc.Dropdown(
id="dropdown_id",
options=["ALL", "A", "B", "C"],
options=[
{"label": html.Div(["ALL"]), "value": "ALL"},
{"label": "A", "value": "A"},
{"label": "B", "value": "B"},
{"label": "C", "value": "C"},
],
optionHeight=32,
value="ALL",
multi=True,
Expand Down

0 comments on commit 2bc2437

Please sign in to comment.