diff --git a/app/views/embed/comments.html.erb b/app/views/embed/comments.html.erb index 539cc0ff1cc..52f33dcab9d 100644 --- a/app/views/embed/comments.html.erb +++ b/app/views/embed/comments.html.erb @@ -1,10 +1,10 @@
<% if @topic_view.topic.posts_count == 0 %> <%= link_to(I18n.t('embed.start_discussion'), @topic_view.topic.url, class: 'button', target: '_blank') %> - <% elsif @topic_view.topic.posts_count > 10 %> + <% else %> <%= link_to(I18n.t('embed.continue'), @second_post_url, class: 'button', target: '_blank') %> - <%= I18n.t('embed.replies', count: @topic_view.topic.posts_count - 1) %> <% end %> + <%= I18n.t('embed.replies', count: @topic_view.topic.posts_count - 1) %>
<%- if @topic_view.posts.present? %>