diff --git a/frontend/src/common/forms/form-service.ts b/frontend/src/common/forms/form-service.ts index 32cd57fe0..18c8d14c9 100644 --- a/frontend/src/common/forms/form-service.ts +++ b/frontend/src/common/forms/form-service.ts @@ -32,6 +32,9 @@ export class FormService { this.touchAllFormFields(control); }); } else if (formControl instanceof UntypedFormArray) { + if(!formControl.controls?.length){ + formControl.markAsTouched() + } formControl.controls.forEach(item => { this.touchAllFormFields(item); });