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
path: root/app
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-11-17 21:48:28 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-11-17 21:49:48 +0300
commit17a0cd46ccdad003b3bf36061fb16caa24a977a1 (patch)
tree242173e773cc277bbe71cf04d6de8b4e18b8703a /app
parentc9f032470116e0cda23e605a66eceaad928b3e02 (diff)
Merge branch 'contributor-graph-by-email' into 'master'
See merge request !1705
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/stat_graph_contributors_util.js.coffee5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/javascripts/stat_graph_contributors_util.js.coffee b/app/assets/javascripts/stat_graph_contributors_util.js.coffee
index cfe5508290f..f5584bcfe4b 100644
--- a/app/assets/javascripts/stat_graph_contributors_util.js.coffee
+++ b/app/assets/javascripts/stat_graph_contributors_util.js.coffee
@@ -6,7 +6,7 @@ window.ContributorsStatGraphUtil =
for entry in log
@add_date(entry.date, total) unless total[entry.date]?
- data = by_author[entry.author_name] #|| by_email[entry.author_email]
+ data = by_author[entry.author_name] || by_email[entry.author_email]
data ?= @add_author(entry, by_author, by_email)
@add_date(entry.date, data) unless data[entry.date]
@@ -95,5 +95,4 @@ window.ContributorsStatGraphUtil =
if date_range is null || date_range[0] <= new Date(date) <= date_range[1]
true
else
- false
-
+ false \ No newline at end of file