diff --git a/app/javascript/dashboard/components-next/input/DurationInput.vue b/app/javascript/dashboard/components-next/input/DurationInput.vue index b0597648a..60cb37f42 100644 --- a/app/javascript/dashboard/components-next/input/DurationInput.vue +++ b/app/javascript/dashboard/components-next/input/DurationInput.vue @@ -43,7 +43,7 @@ const transformedValue = computed({ }, set(newValue) { if (newValue == null || newValue === '') { - duration.value = null; + duration.value = props.min || null; return; } let minuteValue = convertToMinutes(newValue);