Commit b3bfb752 authored by Riyad Preukschas's avatar Riyad Preukschas

Fix link_to_member to not be bold by default

parent 167f26b9
......@@ -26,19 +26,17 @@ module ProjectsHelper
# Build avatar image tag
avatar = image_tag(gravatar_icon(author.try(:email)), width: 16, class: "lil_av")
# Build name strong tag
name = content_tag :strong, author.name, class: 'author'
# Build name span tag
name = content_tag :span, author.name, class: 'author'
author_html = avatar + name
tm = project.team_member_by_id(author)
content_tag :span, class: 'member-link' do
if tm
link_to author_html, project_team_member_path(project, tm), class: "author_link"
else
author_html
end
if tm
link_to author_html, project_team_member_path(project, tm), class: "author_link"
else
author_html
end
end
......
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