stream_list: Remove unused references to stream-filters-label.

This commit is contained in:
Evy Kassirer
2025-07-21 22:24:10 -07:00
committed by Tim Abbott
parent c942900b69
commit 3bb08183f7
2 changed files with 2 additions and 25 deletions

View File

@@ -416,10 +416,7 @@ export function zoom_in_topics(options: {stream_id: number | undefined}): void {
$("#streams_list").expectOne().removeClass("zoom-out").addClass("zoom-in");
// Hide stream list titles and pinned stream splitter
$(".stream-filters-label").each(function () {
$(this).hide();
});
// Hide pinned stream splitter
$(".streams_subheader").each(function () {
$(this).hide();
});
@@ -441,10 +438,7 @@ export function zoom_in_topics(options: {stream_id: number | undefined}): void {
}
export function zoom_out_topics(): void {
// Show stream list titles and pinned stream splitter
$(".stream-filters-label").each(function () {
$(this).show();
});
// Show pinned stream splitter
$(".streams_subheader").each(function () {
$(this).show();
});