From 8287661a0bd6f097bf7e4ce76e49096c6dcd6147 Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 4 Mar 2026 19:01:19 +0100 Subject: [PATCH] Fix unnecessary difference with upstream --- .../flavours/glitch/components/scrollable_list/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/components/scrollable_list/index.jsx b/app/javascript/flavours/glitch/components/scrollable_list/index.jsx index de13a7fb66..fae61d02da 100644 --- a/app/javascript/flavours/glitch/components/scrollable_list/index.jsx +++ b/app/javascript/flavours/glitch/components/scrollable_list/index.jsx @@ -235,7 +235,7 @@ class ScrollableList extends PureComponent { // 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. if (snapshot !== null) { - this.updateScrollBottom(snapshot); + this.setScrollTop(this.getScrollHeight() - snapshot); } }