style: lint

This commit is contained in:
Brandy Smith
2025-02-28 16:16:00 -05:00
parent b9d8cb9925
commit d71d7f49d1

View File

@ -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();
}