However when using the dash @app.callback logic and changing the source property, the change in value was not being passed down to the underlying component. The reason for this is the props are being stored in state in the Dropdown but never refreshed after the initial load
If you set the
source
property in the component like the below the dropdown would contain the values provided in the source property as expected:However when using the dash
@app.callback
logic and changing thesource
property, the change in value was not being passed down to the underlying component. The reason for this is the props are being stored in state in theDropdown
but never refreshed after the initial load