From b4263b912029ca2a0cad0d9cdb07772bc97931f7 Mon Sep 17 00:00:00 2001 From: Dima K Date: Wed, 19 Jul 2023 14:04:08 -0700 Subject: [PATCH] Fix validation for EffectiveDateTime component (#1439) --- ppr-ui/src/components/unitNotes/EffectiveDateTime.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ppr-ui/src/components/unitNotes/EffectiveDateTime.vue b/ppr-ui/src/components/unitNotes/EffectiveDateTime.vue index 8161325fd..3cf2035b8 100644 --- a/ppr-ui/src/components/unitNotes/EffectiveDateTime.vue +++ b/ppr-ui/src/components/unitNotes/EffectiveDateTime.vue @@ -218,6 +218,10 @@ export default defineComponent({ } ) + watch(() => localState.isEffectiveDateTimeValid, (val: boolean) => { + emit('isValid', val) + }) + return { required, effectiveDatePicker,