dash-daq icon indicating copy to clipboard operation
dash-daq copied to clipboard

Knob 1.5.1

Open kachun-osram opened this issue 2 years ago • 0 comments

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; }

kachun-osram avatar Jun 01 '22 17:06 kachun-osram