fix step ok if 0 minutes
This commit is contained in:
@@ -54,7 +54,11 @@ const duration = computed(() => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
const isOffEstimation = computed(() => {
|
const isOffEstimation = computed(() => {
|
||||||
if (!step.value || !stepRecord.value || !duration.value) {
|
if (
|
||||||
|
step.value === null ||
|
||||||
|
stepRecord.value === null ||
|
||||||
|
duration.value === null
|
||||||
|
) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user