From f496982e7952aa13e86853250bcf0505a216f94f Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Tue, 19 May 2015 12:13:30 -0400 Subject: [PATCH] UX: Always show reply as new topic if the user can. --- app/assets/javascripts/discourse/components/post-gutter.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/components/post-gutter.js.es6 b/app/assets/javascripts/discourse/components/post-gutter.js.es6 index d40fcbad4..dbc8c6c05 100644 --- a/app/assets/javascripts/discourse/components/post-gutter.js.es6 +++ b/app/assets/javascripts/discourse/components/post-gutter.js.es6 @@ -62,7 +62,7 @@ export default Em.Component.extend(StringBuffer, { buffer.push(''); } - if ((links.length <= MAX_SHOWN || !collapsed) && this.get('canReplyAsNewTopic')) { + if (this.get('canReplyAsNewTopic')) { buffer.push("" + iconHTML('plus') + I18n.t('post.reply_as_new_topic') + ""); } },