Skip to content

Commit 41f5834

Browse files
sarunintvalorkin
authored andcommitted
fix(typeahead): onFocus should not need any arguments
1 parent 0bd5c60 commit 41f5834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/typeahead/typeahead.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export class TypeaheadDirective implements OnInit {
108108
}
109109
}
110110

111-
@HostListener('focus', ['$event.target'])
111+
@HostListener('focus')
112112
public onFocus():void {
113113
if (this.typeaheadMinLength === 0) {
114114
this.typeaheadLoading.emit(true);

0 commit comments

Comments
 (0)