mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
This data structure has never been one that we actually render into the DOM; instead, its role is to support clicking into view that contain muted streams and topics quickly. This downgrade makes that situation much more explicit, and is also useful refactoring to help simpify the upcoming changes in #16746. Signed-off-by: Anders Kaseorg <anders@zulip.com>
6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
import {MessageListData} from "./message_list_data";
|
|
|
|
export const all_messages_data = new MessageListData({
|
|
excludes_muted_topics: false,
|
|
});
|