The form uses google places api to get adresses but clicking on a adress (or selecting it with the keybord) will not trigger a revalidation of the form?
https://plnkr.co/edit/LgEn9t0X2h6BTHGwyJOW?p=preview
I update the value with
this.registrationForm.patchValue({ adress: adress.formatted_address});
and have tried to trigger the validation manually using the methods
this.registrationForm.markAsDirty(true);
and
this.registrationForm.updateValueAndValidity();
but cant get it to work.