From 1f6625168a622910797edde0a9444cab5e6ac42b Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Mon, 11 Mar 2024 03:47:36 +0000 Subject: [PATCH] message_scroll: Fix scroll to bottom button visible in Inbox view. --- web/src/message_scroll.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/message_scroll.js b/web/src/message_scroll.js index 9e5dfdada9..101568728c 100644 --- a/web/src/message_scroll.js +++ b/web/src/message_scroll.js @@ -13,11 +13,13 @@ import * as unread_ui from "./unread_ui"; let hide_scroll_to_bottom_timer; export function hide_scroll_to_bottom() { + const $show_scroll_to_bottom_button = $("#scroll-to-bottom-button-container"); if (message_lists.current === undefined) { + // Scroll to bottom button is not for non-message views. + $show_scroll_to_bottom_button.removeClass("show"); return; } - const $show_scroll_to_bottom_button = $("#scroll-to-bottom-button-container"); if ( message_viewport.bottom_rendered_message_visible() || message_lists.current.visibly_empty()