Fix unnecessary difference with upstream

This commit is contained in:
Claire
2026-03-04 19:01:19 +01:00
parent 6e6036af14
commit 8287661a0b

View File

@@ -235,7 +235,7 @@ class ScrollableList extends PureComponent {
// Reset the scroll position when a new child comes in in order not to // Reset the scroll position when a new child comes in in order not to
// jerk the scrollbar around if you're already scrolled down the page. // jerk the scrollbar around if you're already scrolled down the page.
if (snapshot !== null) { if (snapshot !== null) {
this.updateScrollBottom(snapshot); this.setScrollTop(this.getScrollHeight() - snapshot);
} }
} }