mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
* Revert "UX: place (edited) on same line (#23866)" This reverts commitc1017a479b. * Revert "UX: prevent (edited) and following from being copied (#23882)" This reverts commit563bff509a.
17 lines
365 B
Handlebars
17 lines
365 B
Handlebars
<div class="chat-message-text">
|
|
{{#if this.isCollapsible}}
|
|
<ChatMessageCollapser
|
|
@cooked={{@cooked}}
|
|
@uploads={{@uploads}}
|
|
@onToggleCollapse={{@onToggleCollapse}}
|
|
/>
|
|
{{else}}
|
|
{{html-safe @cooked}}
|
|
{{/if}}
|
|
|
|
{{#if this.isEdited}}
|
|
<span class="chat-message-edited">({{i18n "chat.edited"}})</span>
|
|
{{/if}}
|
|
|
|
{{yield}}
|
|
</div> |