mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
Currently, we are using type to describe the attention level of the action button. We want to rename the type parameter to attention as we need the type parameter separately for describing the type of button.
11 lines
879 B
Handlebars
11 lines
879 B
Handlebars
{{! Client-side Handlebars template for rendering the topic edit form. }}
|
|
|
|
<form class="topic_edit_form">
|
|
<input type="text" value="" autocomplete="off" maxlength="{{ max_topic_length }}"
|
|
class="inline_topic_edit header-v {{#unless realm_mandatory_topics}}empty-topic-placeholder-display{{/unless}}"
|
|
{{#unless realm_mandatory_topics}}placeholder="{{empty_string_topic_display_name}}"{{/unless}} />
|
|
{{> components/action_button custom_classes="topic_edit_save tippy-zulip-delayed-tooltip" icon="check" attention="primary" intent="brand" data-tooltip-template-id="save-button-tooltip-template" }}
|
|
{{> components/action_button custom_classes="topic_edit_cancel tippy-zulip-delayed-tooltip" icon="circle-x" attention="borderless" intent="neutral" data-tooltip-template-id="cancel-button-tooltip-template" }}
|
|
<div class="topic_edit_spinner"></div>
|
|
</form>
|