Skip to content

Commit

Permalink
Fixed #13227 - Update parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Jun 21, 2023
1 parent 2138674 commit f09f91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ export class AutoComplete implements AfterViewChecked, AfterContentInit, OnDestr
this.cd.markForCheck();
}

handleDropdownClick(event: MouseEvent) {
handleDropdownClick(event: Event) {
if (!this.overlayVisible) {
this.focusInput();
let queryValue = this.multiple ? (this.multiInputEl as ElementRef).nativeElement.value : (this.inputEL as ElementRef).nativeElement.value;
Expand Down

0 comments on commit f09f91e

Please sign in to comment.