Skip to content

Commit

Permalink
Fixed autocomplete change handler (#246)
Browse files Browse the repository at this point in the history
Co-authored-by: Vishal <[email protected]>
  • Loading branch information
vishalshrm539 and Vishal authored Dec 9, 2024
1 parent 7033574 commit 56dc0d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ export class AutoCompleteComponent implements OnInit, OnDestroy {
}

optionChanged(event: any) {
const value = (event.target as HTMLInputElement).value;
const value = event?.option?.value;
handleEvent(this.actionsApi, 'change', this.propName, value);
}

Expand Down

0 comments on commit 56dc0d0

Please sign in to comment.