diff --git a/packages/angular/common/src/directives/control-value-accessors/value-accessor.ts b/packages/angular/common/src/directives/control-value-accessors/value-accessor.ts index 9e556b9b7e..30715544eb 100644 --- a/packages/angular/common/src/directives/control-value-accessors/value-accessor.ts +++ b/packages/angular/common/src/directives/control-value-accessors/value-accessor.ts @@ -53,10 +53,10 @@ export class ValueAccessor implements ControlValueAccessor, AfterViewInit, OnDes this.onTouched(); setIonicClasses(this.elementRef); - // When ion-radio is blurred, el and this.elementRef.nativeElement are - // different so we need to check if the closest ion-radio-group is the same - // as this.elementRef.nativeElement and if so, we need to mark the radio group - // as touched + // When ion-radio is blurred, el and this.elementRef.nativeElement are + // different so we need to check if the closest ion-radio-group is the same + // as this.elementRef.nativeElement and if so, we need to mark the radio group + // as touched } else if (el.closest('ion-radio-group') === this.elementRef.nativeElement) { this.onTouched(); }