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
_updateWithChangeEvent: function(e, percent) {
if (this.state.percent === percent) return;
this.setPercent(percent);
var value = this._percentToValue(percent);
if (this.props.onChange) this.props.onChange(e, value);
},
For instance, a slider with min=10, max=100, step=10 does not give me 10 .. 20 .. 30 .. .. 100 but e.g.
This is probably because of this:
For instance, a slider with min=10, max=100, step=10 does not give me 10 .. 20 .. 30 .. .. 100 but e.g.
Is this as intended?
The text was updated successfully, but these errors were encountered: