Commit 22d9390b authored by Mark Fletcher's avatar Mark Fletcher

Fix bug rendering group icons when forking

- NamespacesHelper#namespace_icon should return a URL instead of an image_tag for groups
parent 3adbc579
......@@ -31,7 +31,7 @@ module NamespacesHelper
def namespace_icon(namespace, size = 40)
if namespace.is_a?(Group)
group_icon(namespace)
group_icon_url(namespace)
else
avatar_icon_for_user(namespace.owner, size)
end
......
---
title: Fix bug rendering group icons when forking
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment