I think there is some bug on this component...when you set min/max it works fine until you update value using this.setState after which max loses its value by 1...
So below...if I use this.setState({ ...this.state, values: [5] }); then max only goes to 99 now.
I think there is some bug on this component...when you set min/max it works fine until you update value using
this.setState
after which max loses its value by 1...So below...if I use
this.setState({ ...this.state, values: [5] });
then max only goes to 99 now.