We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d49cf5c commit 05d4066Copy full SHA for 05d4066
2 files changed
src/components/advanced-range-control/index.js
@@ -216,6 +216,8 @@ const AdvancedRangeControl = props => {
216
}
217
return _value === derivedValue && ( _unit === '' || _unit === unit )
218
} )
219
+ rangeValue = rangeValue === -1 ? '' : rangeValue
220
+
221
rangeOnChange = ( value, property = 'value' ) => {
222
if ( value === '' ) {
223
return _onChange( value )
src/components/four-range-control/index.js
@@ -381,6 +381,7 @@ const FourRangeControl = memo( props => {
381
382
return _value === initialValue && ( _unit === '' || _unit === unit )
383
384
385
386
387
return initialOnChange( value )
0 commit comments