Skip to content

Commit

Permalink
Fixes #3648 - Not scrolling to the selected group option on menu open
Browse files Browse the repository at this point in the history
  • Loading branch information
louisptremblay authored Mar 5, 2021
1 parent ef2090e commit 5741fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-select/src/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ export default class Select extends Component<Props, State> {
this.focusedOptionRef &&
this.scrollToFocusedOptionOnUpdate
) {
scrollIntoView(this.menuListRef, this.focusedOptionRef);
setTimeout(() => scrollIntoView(this.menuListRef, this.focusedOptionRef), 0);
this.scrollToFocusedOptionOnUpdate = false;
}
}
Expand Down

0 comments on commit 5741fe6

Please sign in to comment.