discourse/plugins/chat/assets/javascripts/discourse/components/chat-channel-settings-saved-indicator.hbs
2022-12-28 13:11:12 +00:00

14 lines
303 B
Handlebars

<span
{{did-update this.activate @property}}
{{will-destroy this.teardown}}
class={{concat-class
"chat-channel-settings-saved-indicator"
(if this.isActive "is-active")
}}
role="status"
>
{{#if this.isActive}}
{{d-icon "check"}}
<span>{{i18n "saved"}}</span>
{{/if}}
</span>