Skip to content

Commit

Permalink
Fixed #14641 | Update default wrong default value for autoOptionFocus
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Feb 1, 2024
1 parent d552a7b commit 3373c50
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/components/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ export class AutoComplete implements AfterViewChecked, AfterContentInit, OnDestr
* Whether to focus on the first visible or selected element when the overlay panel is shown.
* @group Props
*/
@Input() autoOptionFocus: boolean | undefined = true;
@Input() autoOptionFocus: boolean | undefined = false;
/**
* When enabled, the focused option is selected.
* @group Props
Expand Down Expand Up @@ -1622,4 +1622,3 @@ export class AutoComplete implements AfterViewChecked, AfterContentInit, OnDestr
declarations: [AutoComplete]
})
export class AutoCompleteModule {}

0 comments on commit 3373c50

Please sign in to comment.