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') + ""); } },