From 454c634b7ead0475bf9ba4a5482de60c6b4fcf1b Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 18 Aug 2014 14:17:14 -0400 Subject: [PATCH] UX: Make posts columns link to the last post in a topic. --- .../javascripts/discourse/components/posts-count-column.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/components/posts-count-column.js.es6 b/app/assets/javascripts/discourse/components/posts-count-column.js.es6 index 94dab2bc869..6263de0ebc1 100644 --- a/app/assets/javascripts/discourse/components/posts-count-column.js.es6 +++ b/app/assets/javascripts/discourse/components/posts-count-column.js.es6 @@ -32,7 +32,7 @@ export default Ember.Component.extend({ render: function(buffer) { var postsCount = this.get('topic.posts_count'), - url = this.get('topic.lastUnreadUrl'); + url = this.get('topic.lastPostUrl'); buffer.push(""); buffer.push(Discourse.Formatter.number(postsCount));