mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
53b0d6adb8
With this change, If an async validator that should have emitted was cancelled by a non-emitting validator, the status change will be reported on the `AbstractControl.events` observable. This issue can happen when a `FormControl` is added to a `FormGroup` and a FormGroupDirective/FormControlDirective trigger a non-emitting validation (which cancels the initial validator execution). Note: The behavior remains the same of the existing `statusChanges` observable as the change was too breaking to land in G3. fixes: angular#41519 PR Close #55134