You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use the Slider component and a rerender happens (state or props change), then the slider will be duplicated.
Might possibly be the same error source as #7? (A problem with the remounting by mdl)
Minimal setup:
classSliderTestextendsComponent{updateState=e=>{this.setState({value: e.target.valueAsNumber})}render(_,{ value }){return(<div><Slidername='test'min={0}max={100}value={value}onChange={this.updateState}/></div>)}}
When I use the
Slider
component and a rerender happens (state or props change), then the slider will be duplicated.Might possibly be the same error source as #7? (A problem with the remounting by mdl)
Minimal setup:
After some changes will render this:
For an example see here:
https://codesandbox.io/s/6wx9r52lw
I will try to tackle this myself as well, but I do not know if my prect / mdl knowledge is enough for that 😅 .
The text was updated successfully, but these errors were encountered: