We now show if a queued or flagged post is a reply to another when in the review queue. It's especially helpful for queued posts where normally they are linked to the topic where they are created, and you have no context about the reply. Note that this will only apply to new queued posts going forward. Previously queued posts will not show the "in reply to"
10 lines
347 B
Handlebars
10 lines
347 B
Handlebars
<div class='reviewable-post-header'>
|
|
{{reviewable-created-by-name user=createdBy tagName=''}}
|
|
{{#if reviewable.reply_to_post_number}}
|
|
<a href={{concat reviewable.topic_url "/" reviewable.reply_to_post_number}} class='reviewable-reply-to'>
|
|
{{d-icon "share"}}
|
|
<span>{{i18n "review.in_reply_to"}}</span>
|
|
</a>
|
|
{{/if}}
|
|
</div>
|