diff options
author | nerro <pavel.sorokin@nerro.eu> | 2017-02-03 11:04:55 +0000 |
---|---|---|
committer | Pavel Sorokin <pavel.sorokin@nerro.eu> | 2017-02-14 22:14:08 +0100 |
commit | 334cd746b3870b59bdd608dddebf4662cef5fc2c (patch) | |
tree | f0f32db15c900576e1ff3c7e6fd8666aa2f81ba5 /app/views/dashboard | |
parent | 5e95296278a629df317d769ae70a3bb9513a64cd (diff) | |
download | gitlab-ce-334cd746b3870b59bdd608dddebf4662cef5fc2c.tar.gz |
#27631: Add missing top-area div to activity header page
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/_activity_head.html.haml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/app/views/dashboard/_activity_head.html.haml b/app/views/dashboard/_activity_head.html.haml index 02b94beee92..68a46f61eb7 100644 --- a/app/views/dashboard/_activity_head.html.haml +++ b/app/views/dashboard/_activity_head.html.haml @@ -1,7 +1,8 @@ -%ul.nav-links - %li{ class: ("active" unless params[:filter]) }> - = link_to activity_dashboard_path, class: 'shortcuts-activity', data: {placement: 'right'} do - Your Projects - %li{ class: ("active" if params[:filter] == 'starred') }> - = link_to activity_dashboard_path(filter: 'starred'), data: {placement: 'right'} do - Starred Projects +.top-area + %ul.nav-links + %li{ class: ("active" unless params[:filter]) }> + = link_to activity_dashboard_path, class: 'shortcuts-activity', data: {placement: 'right'} do + Your Projects + %li{ class: ("active" if params[:filter] == 'starred') }> + = link_to activity_dashboard_path(filter: 'starred'), data: {placement: 'right'} do + Starred Projects |