diff --git a/frontend/src/components/forms/DateInputComponent/index.vue b/frontend/src/components/forms/DateInputComponent/index.vue index 0d4a9b6183..d6b85cba52 100644 --- a/frontend/src/components/forms/DateInputComponent/index.vue +++ b/frontend/src/components/forms/DateInputComponent/index.vue @@ -362,7 +362,9 @@ revalidateBus.on((keys: string[] | undefined) => { validation[DatePart.year] = validatePart(DatePart.year); validation[DatePart.month] = validatePart(DatePart.month); validation[DatePart.day] = validatePart(DatePart.day); - validateFullDate(selectedValue.value); + if (areAllPartsValid()) { + validateFullDate(selectedValue.value); + } } });