AAE-33137 Asynchronous Form Enrichment does Not Populate Date Fields ()

* AAE-33137 Asynchronous Form Enrichment does Not Populate Date Fields

* fix date time as well
This commit is contained in:
Bartosz Sekula 2025-03-25 17:30:40 +01:00 committed by GitHub
parent 3c2d890a1e
commit 9bbbc8193d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions
lib
core/src/lib/form/components/widgets/date-time
process-services-cloud/src/lib/form/components/widgets/date

@ -67,6 +67,7 @@ export class DateTimeWidgetComponent extends WidgetComponent implements OnInit,
}
updateReactiveFormControl(): void {
this.setFormControlValue();
this.updateFormControlState();
this.validateField();
}

@ -87,6 +87,7 @@ export class DateCloudWidgetComponent extends WidgetComponent implements OnInit,
}
updateReactiveFormControl(): void {
this.setFormControlValue();
this.updateFormControlState();
this.validateField();
}