Closed
Description
Bug Report
Ionic version:
[x] 4.x
Current behavior:
<ion-input [(ngModel)]="tests" (ionChange)="test($event)"></ion-input>
ngOnInit(
this.tests = '123';
)
test($event){
console.log('$event :', $event);
}
This is triggered the second time the page is accessed
Expected behavior:
If the user is not actively typing, no change event needs to be triggered