From 22ccc403df7acf2e6d2bc63a9445895de47bcdc7 Mon Sep 17 00:00:00 2001 From: Toks Date: Sat, 30 Mar 2013 21:41:14 -0400 Subject: [PATCH] only 1 post count tags are marked --- app/presenters/tag_set_presenter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/presenters/tag_set_presenter.rb b/app/presenters/tag_set_presenter.rb index ecd95181e..feb87ddb5 100644 --- a/app/presenters/tag_set_presenter.rb +++ b/app/presenters/tag_set_presenter.rb @@ -125,7 +125,7 @@ private post_count = counts[tag].to_s end - is_underused_tag = counts[tag].to_i <= 10 && categories[tag] == Tag.categories.general + is_underused_tag = counts[tag].to_i <= 1 && categories[tag] == Tag.categories.general html << %{#{post_count}} end