Skip to content

Commit

Permalink
Merge branch 'support/client2' into chore/upgrade-vue
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia authored Oct 1, 2024
2 parents fc54e57 + 02fa1fb commit d932d41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/forms/DateInputComponent/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
});
Expand Down

0 comments on commit d932d41

Please sign in to comment.