Hi @NadA, when you define the options
attribute of a dcc.Dropdown
, the value
key can only have a string or a number as its
value, as explained in the docstring of dcc.Dropdown
. Here nothing is displayed because this option is considered as not valid.
- options (dict; optional): An array of options {label: [string|number], value: [string|number]},
an optional disabled field can be used for each option. options has the following type: list of dicts containing keys 'label', 'value', 'disabled'.
Those keys have the following types:
- label (string | number; required): The dropdown's label
- value (string | number; required): The value of the dropdown. This value
corresponds to the items specified in the `value` property.
- disabled (boolean; optional): If true, this option is disabled and cannot be selected.