Closed Bachibouzouk closed 3 years ago
The following results in component not rendering and many error messages in the console
dash_daq.Slider( id='a-slider', value=1, handleLabel={"showCurrentValue": True}, )
The current workaround is the following
dash_daq.Slider( id='a-slider', value=1, handleLabel={"showCurrentValue": True, "label": " "}, )
It makes sense that the user can choose to show the value without necessarily have a label.
The following results in component not rendering and many error messages in the console
The current workaround is the following
It makes sense that the user can choose to show the value without necessarily have a label.