diff --git a/frontend/src/plugins/impl/SliderPlugin.tsx b/frontend/src/plugins/impl/SliderPlugin.tsx index a00b4f9ae77..d5aab40637f 100644 --- a/frontend/src/plugins/impl/SliderPlugin.tsx +++ b/frontend/src/plugins/impl/SliderPlugin.tsx @@ -147,6 +147,10 @@ const SliderComponent = ({ { + // If nextValue is null/undefined (input cleared), set to start + if (nextValue == null) { + nextValue = Number(start); + } setInternalValue(nextValue); if (!debounce) { setValue(nextValue);