diff options
author | Stan Hu <stanhu@gmail.com> | 2015-09-23 08:42:32 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-09-24 08:31:18 -0700 |
commit | 452621208caecec6d4b11f94e17e3a5ed0519baa (patch) | |
tree | 1263f85e75eb997de20b9c4873e68135bdd8943d | |
parent | c4ca1ad4c33bc90074a9321e9cd5a2404a62cc92 (diff) | |
download | gitlab-ce-452621208caecec6d4b11f94e17e3a5ed0519baa.tar.gz |
Fix default avatar not showing up in network graph
Closes https://github.com/gitlabhq/gitlabhq/issues/9657
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | app/views/projects/network/show.json.erb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG index 710f99cbf51..7e96d9bbbc5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,7 @@ v 8.1.0 (unreleased) - Remove "Continuous Integration" page from dashboard v 8.0.2 (unreleased) + - Fix default avatar not rendering in network graph (Stan Hu) - Skip check_initd_configured_correctly on omnibus installs - Prevent double-prefixing of help page paths - Clarify confirmation text on user deletion 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, |