Skip to content

Commit 5741fe6

Browse files
Fixes #3648 - Not scrolling to the selected group option on menu open
1 parent ef2090e commit 5741fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-select/src/Select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ export default class Select extends Component<Props, State> {
611611
this.focusedOptionRef &&
612612
this.scrollToFocusedOptionOnUpdate
613613
) {
614-
scrollIntoView(this.menuListRef, this.focusedOptionRef);
614+
setTimeout(() => scrollIntoView(this.menuListRef, this.focusedOptionRef), 0);
615615
this.scrollToFocusedOptionOnUpdate = false;
616616
}
617617
}

0 commit comments

Comments
 (0)