Changes project dashboard tabs to sentence casing

This commit is contained in:
Ryan Harris 2016-11-26 23:34:19 -05:00
parent 70d4d2fb27
commit 084d90acc4
2 changed files with 7 additions and 3 deletions

View file

@ -4,13 +4,13 @@
%ul.nav-links
= nav_link(page: [dashboard_projects_path, root_path]) do
= link_to dashboard_projects_path, title: 'Home', class: 'shortcuts-activity', data: {placement: 'right'} do
Your Projects
Your projects
= nav_link(page: starred_dashboard_projects_path) do
= link_to starred_dashboard_projects_path, title: 'Starred Projects', data: {placement: 'right'} do
Starred Projects
Starred projects
= nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path]) do
= link_to explore_root_path, title: 'Explore', data: {placement: 'right'} do
Explore Projects
Explore projects
.nav-controls
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|

View file

@ -0,0 +1,4 @@
---
title: Sentence cased the nav tab headers on the project dashboard page
merge_request:
author: Ryan Harris