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:
authorStan Hu <stanhu@gmail.com>2015-09-23 18:42:32 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-09-24 21:24:05 +0300
commit222ededa34a276d8f5744fd52c519612eaed7e74 (patch)
tree908c8a5d5d2a4ac1d546f42a7ad334d2c3b7de06 /app
parent5f0983b207013543f463dab037a9f76b85d9afc8 (diff)
Fix default avatar not showing up in network graph
Closes https://github.com/gitlabhq/gitlabhq/issues/9657
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/network/show.json.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/network/show.json.erb b/app/views/projects/network/show.json.erb
index dc82adcb2c6..122e84b41b2 100644
--- a/app/views/projects/network/show.json.erb
+++ b/app/views/projects/network/show.json.erb
@@ -9,7 +9,7 @@
author: {
name: c.author_name,
email: c.author_email,
- icon: avatar_icon(c.author_email, 20)
+ icon: image_path(avatar_icon(c.author_email, 20))
},
time: c.time,
space: c.spaces.first,