From f414020be872002a50f45baf923ef230b85b8551 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 10 Nov 2014 15:20:01 -0500 Subject: [PATCH] FIX: New topics were not showing in suggested --- .../templates/components/basic-topic-list.hbs | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/app/assets/javascripts/discourse/templates/components/basic-topic-list.hbs b/app/assets/javascripts/discourse/templates/components/basic-topic-list.hbs index 32802cca7..60fc4a42a 100644 --- a/app/assets/javascripts/discourse/templates/components/basic-topic-list.hbs +++ b/app/assets/javascripts/discourse/templates/components/basic-topic-list.hbs @@ -17,36 +17,36 @@ - {{#grouped-each topic in topics}} + {{#each topics}} - {{topic-status topic=topic}} - {{{unbound topic.fancy_title}}} - {{topic-post-badges unread=topic.unread - newPosts=topic.new_posts - unseen=topic.unseen - url=topic.lastUnreadUrl}} + {{topic-status topic=this}} + {{{unbound fancy_title}}} + {{topic-post-badges unread=unread + newPosts=new_posts + unseen=unseen + url=lastUnreadUrl}} - {{raw "list/category-column" hideCategory=controller.hideCategory category=topic.category}} + {{raw "list/category-column" hideCategory=controller.hideCategory category=category}} - {{posts-count-column topic=topic class="num" action="clickedPosts"}} + {{posts-count-column topic=this class="num" action="clickedPosts"}} {{#if controller.showParticipants}} - {{#each topic.participants}} + {{#each participants}} {{avatar this usernamePath="user.username" imageSize="small"}} {{/each}} {{/if}} - - {{number topic.views numberKey="views_long"}} + + {{number views numberKey="views_long"}} - {{raw "list/activity-column" topic=topic class="num" tagName="td"}} + {{raw "list/activity-column" topic=this class="num" tagName="td"}} - {{/grouped-each}} + {{/each}}