diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2017-06-26 09:10:53 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2017-06-26 09:10:53 +0000 |
commit | 5c8e8662c60a7b5ad2ed6ccb95d67ad9dcebb1e6 (patch) | |
tree | ad16dbbc37fbbd83f435a6dee00764a96d8dc945 /app/views | |
parent | 1393f8ddfeb87b70443e570c6fed9b1f84f02cee (diff) | |
parent | 3e7e08adfc101359c0d5628ed6584874f5b5a713 (diff) | |
download | gitlab-ce-5c8e8662c60a7b5ad2ed6ccb95d67ad9dcebb1e6.tar.gz |
Merge branch 'dm-group-page-name' into 'master'
Show group name instead of path on group page
See merge request !12391
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/groups/_home_panel.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/groups/_home_panel.html.haml b/app/views/groups/_home_panel.html.haml index 41f54f6bf42..181c7bee702 100644 --- a/app/views/groups/_home_panel.html.haml +++ b/app/views/groups/_home_panel.html.haml @@ -3,7 +3,7 @@ .avatar-container.s70.group-avatar = image_tag group_icon(@group), class: "avatar s70 avatar-tile" %h1.group-title - @#{@group.path} + = @group.name %span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) } = visibility_level_icon(@group.visibility_level, fw: false) |