Commit 6d57accef2976932e9bea76b6cb9a4cbe9d81918

Authored by Dmitriy Zaporozhets
2 parents 5f9592e4 c1c9e114

Merge pull request #6764 from BrettBukowski/classname-typo

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')
... ...