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
I have tried the 1.5.1 Knob, and 'touch' was working... thanks!
However, I believe now there has a off-by-one error... setting the value to min, will set the Knob display to max.
getValue(value) {
return value > this.props.min && value < this.props.max
? value
: this.props.min > value <---- should be :this.props.min >= value
? this.props.min
: this.props.max;
}
The text was updated successfully, but these errors were encountered:
I have tried the 1.5.1 Knob, and 'touch' was working... thanks!
However, I believe now there has a off-by-one error... setting the value to min, will set the Knob display to max.
getValue(value) {
return value > this.props.min && value < this.props.max
? value
: this.props.min > value <---- should be :this.props.min >= value
? this.props.min
: this.props.max;
}
The text was updated successfully, but these errors were encountered: