feat(input): ionChange will only emit from user committed changes (#25858)

Resolves #20106, #20061
This commit is contained in:
Sean Perkins
2022-09-12 15:35:43 -04:00
committed by GitHub
parent ba6b539675
commit 8732b7bdb7
18 changed files with 225 additions and 30 deletions

View File

@ -25,6 +25,6 @@ export class BooleanValueAccessorDirective extends ValueAccessor {
@HostListener('ionChange', ['$event.target'])
_handleIonChange(el: any): void {
this.handleChangeEvent(el, el.checked);
this.handleValueChange(el, el.checked);
}
}