Skip to content
Snippets Groups Projects
Commit 4601a58a authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Defer scrollIntoView after DOM is drawn (fixes #8239) (#8242)

parent 106fa28a
No related branches found
No related tags found
No related merge requests found
......@@ -355,7 +355,9 @@ export default class Status extends ImmutablePureComponent {
if (status && ancestorsIds && ancestorsIds.size > 0) {
const element = this.node.querySelectorAll('.focusable')[ancestorsIds.size - 1];
element.scrollIntoView(true);
window.requestAnimationFrame(() => {
element.scrollIntoView(true);
});
this._scrolledIntoView = true;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment