From 1211eb5ce0ae1431b7d1abe9661bc76aa7c950da Mon Sep 17 00:00:00 2001 From: Miles Malerba Date: Wed, 5 Jun 2024 13:09:52 -0700 Subject: [PATCH] fix(material/radio): mark radio-group for check on touch --- src/material/radio/radio.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/material/radio/radio.ts b/src/material/radio/radio.ts index ed83b31f3f91..a620689f11a5 100644 --- a/src/material/radio/radio.ts +++ b/src/material/radio/radio.ts @@ -269,6 +269,7 @@ export class MatRadioGroup implements AfterContentInit, OnDestroy, ControlValueA _touch() { if (this.onTouched) { this.onTouched(); + this._changeDetector.markForCheck(); } }