Hey guys, was wondering how to increase the dcc.Dropdown size so that it shows all the options rather than the first six and a vertical scrollbar as it is doing currently in the image attached
My current dcc.Dropdown is:
dcc.Dropdown(
id='jobsite-dropdown',
className="control-dropdown",
clearable=False,
options=[{"label": config_builder.get_site_display_name(site), "value": site} for site in site_name_list], #type:ignore
style={'cursor': 'pointer'},
value=job_site
),
In a normal html select tagi think you can specify a size attribute as follows:
<select name="cars" id="cars" size="3">