[FIX] Message Block ordering (#21464)

pull/21416/head
gabriellsh 4 years ago committed by GitHub
parent 4b3d58fd36
commit 68b71bc067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      app/ui-message/client/message.html

@ -123,17 +123,7 @@
{{#if hasAttachments}}
{{> reactAttachments attachments=msg.attachments file=msg.file }}
{{/if}}
{{#if msg.drid}}
{{> DiscussionMetric count=msg.dcount drid=msg.drid lm=msg.dlm openDiscussion=actions.openDiscussion }}
{{/if}}
{{#if $and settings.showReplyButton msg.tcount}}
{{> ThreadMetric counter=msg.tcount following=following lm=msg.tlm rid=msg.rid mid=msg._id unread=unread mention=mention all=all openThread=actions.openThread }}
{{/if}}
{{#if broadcast}}
{{> BroadCastMetric mid=msg._id username=msg.u.username replyBroadcast=actions.replyBroadcast }}
{{/if}}
{{#with readReceipt}}
<div class="read-receipt {{readByEveryone}}">
@ -176,6 +166,18 @@
{{/unless}}
</ul>
{{/unless}}
{{#if msg.drid}}
{{> DiscussionMetric count=msg.dcount drid=msg.drid lm=msg.dlm openDiscussion=actions.openDiscussion }}
{{/if}}
{{#if $and settings.showReplyButton msg.tcount}}
{{> ThreadMetric counter=msg.tcount following=following lm=msg.tlm rid=msg.rid mid=msg._id unread=unread mention=mention all=all openThread=actions.openThread }}
{{/if}}
{{#if broadcast}}
{{> BroadCastMetric mid=msg._id username=msg.u.username replyBroadcast=actions.replyBroadcast }}
{{/if}}
{{/unless}}
</li>
</template>

Loading…
Cancel
Save