Thread with 1 post
jump to expanded post#angular Material.rant:
@if (form.controls.checkBox.errors?.myError) { <mat-error> Oops </mat-error> } <!-- No change detection, not error. -->
@if (form.controls.checkBox.errors?.myError) { <mat-error> Whee </mat-error> <span/>} <!-- Change detection works ,error visible. -->
🤷