UX: Always show reply as new topic if the user can.

This commit is contained in:
Robin Ward 2015-05-19 12:13:30 -04:00
parent 1f95ef31cc
commit f496982e79
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ export default Em.Component.extend(StringBuffer, {
buffer.push('</ul>');
}
if ((links.length <= MAX_SHOWN || !collapsed) && this.get('canReplyAsNewTopic')) {
if (this.get('canReplyAsNewTopic')) {
buffer.push("<a href class='reply-new'>" + iconHTML('plus') + I18n.t('post.reply_as_new_topic') + "</a>");
}
},