We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0bfdeb commit a9e3ab9Copy full SHA for a9e3ab9
src/components/MultiRangeSlider.tsx
@@ -95,6 +95,7 @@ const MultiRangeSlider = function (props: MultiRangeSliderProps) {
95
max={defaultMaxValue}
96
value={minValue}
97
disabled={disabled}
98
+ style={{ pointerEvents: 'none' }}
99
onChange={(event) => {
100
handleChange(parseFloat(event.target.value), maxValue)
101
}}
@@ -107,6 +108,7 @@ const MultiRangeSlider = function (props: MultiRangeSliderProps) {
107
108
109
value={maxValue}
110
111
112
113
handleChange(minValue, parseFloat(event.target.value))
114
0 commit comments