Skip to content

Commit

Permalink
fix: Console does not scroll to bottom when code run from notebook (#…
Browse files Browse the repository at this point in the history
…2114)

Noticed running code from a notebook wasn't scrolling to the bottom on Chrome on Linux at least.
  • Loading branch information
mattrunyon authored Jun 27, 2024
1 parent 7009e21 commit e75e716
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/console/src/Console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,10 @@ export class Console extends PureComponent<ConsoleProps, ConsoleState> {
if (pane == null) {
return;
}
pane.scrollTo({ top: pane.scrollHeight });

window.requestAnimationFrame(() => {
pane.scrollTo({ top: pane.scrollHeight });
});
}

handleScrollPaneScroll(): void {
Expand Down

0 comments on commit e75e716

Please sign in to comment.