FIX: use last_activity_date instead of created_at for crawler view

This commit is contained in:
Saurabh Patel 2019-04-22 17:28:50 +05:30 committed by Robin Ward
parent a63ef4cfc8
commit 3f9ec197e7

View File

@ -45,7 +45,7 @@
<tr>
<th><%= t 'js.topic.title' %></th>
<th><%= t 'js.replies' %></th>
<th><%= t 'js.created' %></th>
<th><%= t 'js.activity' %></th>
</tr>
</thead>
@ -75,7 +75,7 @@
<span class='posts' title='<%= t 'posts' %>'><%= t.posts_count %></span>
</td>
<td>
<%= I18n.l(t.created_at, format: :date_only) %>
<%= I18n.l(t.last_posted_at, format: :date_only) %>
</td>
</tr>
<% end %>