This repository was archived by the owner on Jan 5, 2022. It is now read-only.

Description
Hi.
I've a form with an array of forms. For example:
this.formGroup = this.formBuilder.group({
'field1': [null, Validators.required],
'field2': this.formBuilder.array([]),
});
Field2 is a form group with some fields required. The form is not submit because some fields on Field2 are not valid, but no message is shown, nor fields are marked with has-error class.
Documentation.
Documentation example.