mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
fix(searchbar): emit the input event on input changed
This commit is contained in:
@ -183,7 +183,8 @@ export class Searchbar {
|
|||||||
inputChanged(ev: any) {
|
inputChanged(ev: any) {
|
||||||
this.value = ev.target.value;
|
this.value = ev.target.value;
|
||||||
// this._inputDebouncer.debounce(() => {
|
// this._inputDebouncer.debounce(() => {
|
||||||
// this.ionInput.emit(ev);
|
// TODO fix to be inside debounce
|
||||||
|
this.ionInput.emit(ev);
|
||||||
// });
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user