mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This commit adds the INFO compose banner for new channel/topic when the recipient is updated when topic is moved. fixes: #33445.
14 lines
396 B
Handlebars
14 lines
396 B
Handlebars
{{#if is_empty_string_topic}}
|
|
<span class="stream-topic">
|
|
{{~!-- squash whitespace --~}}
|
|
#{{channel_name}} > <em class="empty-topic-display">{{t "general chat"}}</em>
|
|
{{~!-- squash whitespace --~}}
|
|
</span>
|
|
{{~else}}
|
|
<span class="stream-topic">
|
|
{{~!-- squash whitespace --~}}
|
|
#{{channel_name}} > {{topic_display_name}}
|
|
{{~!-- squash whitespace --~}}
|
|
</span>
|
|
{{~/if}}
|