Commit c1c9e11457cb13a51686f9f24bfa849bc6ac7fa3
1 parent
0f31acd0
Exists in
spb-stable
and in
3 other branches
Fix "project-name" span classname typo
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/projects_helper.rb
... | ... | @@ -5,7 +5,7 @@ module ProjectsHelper |
5 | 5 | |
6 | 6 | def link_to_project project |
7 | 7 | link_to project do |
8 | - title = content_tag(:span, project.name, class: 'projet-name') | |
8 | + title = content_tag(:span, project.name, class: 'project-name') | |
9 | 9 | |
10 | 10 | if project.namespace |
11 | 11 | namespace = content_tag(:span, "#{project.namespace.human_name} / ", class: 'namespace-name') | ... | ... |