You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have added ace editor in one of my component as <ace-editor style="height: 100px;width:100%;" class="apic-ace" [text]="name" (textChange)="updated($event)">
Now if I change the value of name, the textChange event is triggered twice, once with empty string and again with actual value.
I have added ace editor in one of my component as
<ace-editor style="height: 100px;width:100%;" class="apic-ace" [text]="name" (textChange)="updated($event)">
Now if I change the value of
name
, the textChange event is triggered twice, once with empty string and again with actual value.Here is a example reproducing the issue.
https://stackblitz.com/edit/angular-upeurq
The text was updated successfully, but these errors were encountered: