diff --git a/src/containers/slider-prompt.jsx b/src/containers/slider-prompt.jsx index 468fa02426e86d476903717c90b21759307efb09..4fd6f9df3ba41fc32999def6d5f59e40b385937e 100644 --- a/src/containers/slider-prompt.jsx +++ b/src/containers/slider-prompt.jsx @@ -16,8 +16,8 @@ class SliderPrompt extends React.Component { ]); this.state = { decimalSelected: this.props.defaultDecimal, - minValue: 0, - maxValue: 100, + minValue: this.props.defaultMinValue, + maxValue: this.props.defaultMaxValue, mustDecimal: this.checkMustDecimal(this.props.defaultMinValue, this.props.defaultMaxValue) }; }