This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components/chat-mention-warnings.hbs
2022-12-28 13:11:12 +00:00

24 lines
714 B
Handlebars

{{#if this.show}}
<div class="chat-mention-warnings">
<div class="chat-mention-warning__icon">
{{d-icon "exclamation-triangle"}}
</div>
<div class="chat-mention-warning__text">
<div class="chat-mention-warning__header">
{{this.warningHeaderText}}
</div>
<ul class={{this.listStyleClass}}>
{{#if @tooManyMentions}}
<li>{{this.tooManyMentionsBody}}</li>
{{else}}
{{#if @unreachableGroupMentions}}
<li>{{this.unreachableBody}}</li>
{{/if}}
{{#if @overMembersLimitGroupMentions}}
<li>{{this.overMembersLimitBody}}</li>
{{/if}}
{{/if}}
</ul>
</div>
</div>
{{/if}}