diff --git a/src/common/Slider/Slider.js b/src/common/Slider/Slider.js index 251e18686..ae80f66da 100644 --- a/src/common/Slider/Slider.js +++ b/src/common/Slider/Slider.js @@ -89,7 +89,7 @@ class Slider extends Component { render() { const thumbStartProp = this.orientation === 'horizontal' ? 'left' : 'bottom'; - const thumbStart = (this.props.value - this.props.minimumValue) / (this.props.maximumValue - this.props.minimumValue); + const thumbStart = Math.min((this.props.value - this.props.minimumValue) / (this.props.maximumValue - this.props.minimumValue), 1); return (