mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
This commit adds support to display `realm_empty_topic_display_name` value in the 'move topic modal' heading for topics having the actual value of empty string. Also, in the new_topic_name input box we show a placeholder of `realm_empty_topic_display_name` value when the actual topic value is empty string.
8 lines
334 B
Handlebars
8 lines
334 B
Handlebars
<span class="stream-or-topic-reference">
|
|
{{~#if stream~}}
|
|
{{> inline_decorated_stream_name stream=stream show_colored_icon=show_colored_icon}}
|
|
{{#if topic_display_name~}} > {{/if}}
|
|
{{~/if~}}
|
|
<span {{#if is_empty_string_topic}}class="empty-topic-display"{{/if}}>{{~ topic_display_name ~}}</span>
|
|
</span>
|