Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-08-24 20:29:27 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-09-07 23:27:14 +0300
commit8499de19c9bca4c43378b8a9cf2b6705f9cab647 (patch)
treee22d78a3b9ed7077e8c24f0bd72c4c08673af9ce /app/helpers/milestones_helper.rb
parent19e2bf1c21a853e45db0c18133e5f1b1234ad09f (diff)
Ensure milestone counts work with no data
Commit originally written by @smcgivern
Diffstat (limited to 'app/helpers/milestones_helper.rb')
-rw-r--r--app/helpers/milestones_helper.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/helpers/milestones_helper.rb b/app/helpers/milestones_helper.rb
index b91f09f76ee..a11c313a6b8 100644
--- a/app/helpers/milestones_helper.rb
+++ b/app/helpers/milestones_helper.rb
@@ -36,14 +36,15 @@ module MilestonesHelper
end
# Returns count of milestones for different states
- # Uses explicit hash keys as the 'opened' state URL params differs from the db value
+ # Uses explicit hash keys as the 'opened' state URL params differs from the db value
# and we need to add the total
def milestone_counts(milestones)
counts = milestones.reorder(nil).group(:state).count
+
{
- opened: counts['active'],
- closed: counts['closed'],
- all: counts.values.sum
+ opened: counts['active'] || 0,
+ closed: counts['closed'] || 0,
+ all: counts.values.sum || 0
}
end