fix duration value review comment

This commit is contained in:
Tanmay Deep Sharma
2026-03-17 12:48:53 +05:30
parent 2cacb0868c
commit a36dd4bcda
@@ -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);