message_scroll: Fix scroll to bottom button visible in Inbox view.

This commit is contained in:
Aman Agrawal 2024-03-11 03:47:36 +00:00 committed by Tim Abbott
parent 8f5b8dbf1a
commit 1f6625168a
1 changed files with 3 additions and 1 deletions

View File

@ -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()