In the above example,I have a reactive form with nested form groups.address-form child component is used for the nested form group.The validation is being done in the parent component.Everything seems working except the pattern validation.The validation for required works fine but the pattern validation does not work.
I have used the validators.compose to club together required validation and pattern validation.Is there anything i am doing wrong here?