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-composer-message-details.hbs
2022-12-28 13:11:12 +00:00

17 lines
466 B
Handlebars

<div class="chat-composer-message-details">
<div class="chat-reply">
{{d-icon this.icon}}
<ChatUserAvatar @user={{this.message.user}} />
<span class="chat-reply__username">{{this.message.user.username}}</span>
<span class="chat-reply__excerpt">{{replace-emoji
this.message.excerpt
}}</span>
</div>
<FlatButton
@action={{this.action}}
@class="cancel-message-action"
@icon="times-circle"
@title="cancel"
/>
</div>