mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
UX: Always show reply as new topic if the user can.
This commit is contained in:
parent
1f95ef31cc
commit
f496982e79
1 changed files with 1 additions and 1 deletions
|
@ -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>");
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue