navbar: Use _html variables in template.

Signed-off-by: apoorvapendse <apoorvavpendse@gmail.com>
This commit is contained in:
apoorvapendse
2025-07-30 14:41:49 +05:30
committed by Tim Abbott
parent 83cfff0ad0
commit ab48666358
3 changed files with 6 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ import * as util from "./util.ts";
type IconData = {
title?: string | undefined;
html_title?: string | undefined;
title_html?: string | undefined;
is_spectator: boolean;
} & (
| {
@@ -1339,7 +1339,7 @@ export class Filter {
add_icon_data(context: {
title?: string;
html_title?: string;
title_html?: string;
description?: string | undefined;
link?: string | undefined;
is_spectator: boolean;

View File

@@ -20,7 +20,7 @@ import type {StreamSubscription} from "./sub_store.ts";
type MessageViewHeaderContext = {
title?: string | undefined;
html_title?: string | undefined;
title_html?: string | undefined;
description?: string;
link?: string;
is_spectator?: boolean;
@@ -122,7 +122,7 @@ function get_message_view_header_context(filter: Filter | undefined): MessageVie
context = {
...context,
title: undefined,
html_title: stream_name_with_privacy_symbol_html,
title_html: stream_name_with_privacy_symbol_html,
// We don't want to show an initial icon here.
icon: undefined,
zulip_icon: undefined,

View File

@@ -6,8 +6,8 @@
{{#if title}}
<span class="message-header-navbar-title">{{title}}</span>
{{/if}}
{{#if html_title}}
<span class="message-header-navbar-title">{{{html_title}}}</span>
{{#if title_html}}
<span class="message-header-navbar-title">{{{title_html}}}</span>
{{/if}}
{{#if stream}}
{{#if stream.is_archived}}