mirror of
https://github.com/zulip/zulip.git
synced 2026-06-30 21:11:04 +08:00
recent_view_util: Rename is_rt_visible to is_view_visible.
This avoids the less readable abbreviation.
This commit is contained in:
parent
aa8f8a2dcf
commit
ba568adc2e
@ -1,13 +1,13 @@
|
||||
import type {Message} from "./types";
|
||||
|
||||
let is_rt_visible = false;
|
||||
let is_view_visible = false;
|
||||
|
||||
export function set_visible(value: boolean): void {
|
||||
is_rt_visible = value;
|
||||
is_view_visible = value;
|
||||
}
|
||||
|
||||
export function is_visible(): boolean {
|
||||
return is_rt_visible;
|
||||
return is_view_visible;
|
||||
}
|
||||
|
||||
export function get_topic_key(stream_id: number, topic: string): string {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user