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 and mofojed committed Dec 13, 2024
1 parent 882980d commit e697bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/console/src/Console.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ export class Console extends PureComponent<ConsoleProps, ConsoleState> {
}

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

Expand Down

0 comments on commit e697bb0

Please sign in to comment.