mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: missing avatars from categories page when ajax loaded
UX: display last poster on categories page instead of OP
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
<tbody>
|
||||
<tr data-topic-id={{topic.id}} class="{{if topic.archived 'archived'}}">
|
||||
<td class="topic-poster">
|
||||
{{#with topic.creator as |op|}}
|
||||
{{#user-link user=op}}
|
||||
{{avatar op imageSize="large"}}
|
||||
{{#with topic.lastPoster as |lastPoster|}}
|
||||
{{#user-link user=lastPoster}}
|
||||
{{avatar lastPoster imageSize="large"}}
|
||||
{{/user-link}}
|
||||
{{/with}}
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user