Files
zulip/web/templates/inline_topic_link_label.hbs
Harsh f2b33fc3ee compose: Add banner when topic is moved and recipient is updated.
This commit adds the INFO compose banner for new channel/topic when the
recipient is updated when topic is moved.

fixes: #33445.
2025-04-13 20:29:58 -07:00

14 lines
396 B
Handlebars

{{#if is_empty_string_topic}}
<span class="stream-topic">
{{~!-- squash whitespace --~}}
#{{channel_name}} &gt; <em class="empty-topic-display">{{t "general chat"}}</em>
{{~!-- squash whitespace --~}}
</span>
{{~else}}
<span class="stream-topic">
{{~!-- squash whitespace --~}}
#{{channel_name}} &gt; {{topic_display_name}}
{{~!-- squash whitespace --~}}
</span>
{{~/if}}