From 2e667d08100491faec6d60df34158c8c883eda02 Mon Sep 17 00:00:00 2001 From: Ben Halpern Date: Wed, 23 Jan 2019 17:57:51 -0500 Subject: [PATCH] Lower number of comments showing on first page of article show (#1637) --- app/controllers/stories_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/stories_controller.rb b/app/controllers/stories_controller.rb index 281aa09df..210c2093c 100644 --- a/app/controllers/stories_controller.rb +++ b/app/controllers/stories_controller.rb @@ -207,7 +207,7 @@ class StoriesController < ApplicationController @article_show = true @comment = Comment.new assign_user_and_org - @comments_to_show_count = @article.cached_tag_list_array.include?("discuss") ? 65 : 35 + @comments_to_show_count = @article.cached_tag_list_array.include?("discuss") ? 50 : 30 assign_second_and_third_user not_found if permission_denied? set_surrogate_key_header @article.record_key