I have set up a simple project to explain my issue. I have a main component defining a form with three fields. The third field is defined in a child component.
I simplify pass the formGroup to the child component to bind the values. It works all fine from a data binding perspective but when i click on submit for the form, i can see the validation working on fields defined in the parent component but the component in the child one is not turning red
Project example : https://stackblitz.com/edit/angular-74rac8 Click on submit
How can i tell the child the form has been submitted ? I thought it would be the case since i pass the same formGroup object