diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-09-08 19:23:30 +0100 |
---|---|---|
committer | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-09-08 19:23:30 +0100 |
commit | dbd6b2dc0ad4a379490cbb1ea23eee9d90526163 (patch) | |
tree | 268cdbbcc4d53eb39e425747fac8ce246917f48f | |
parent | 4c833a1d4ead49c27f6a81e607d10a5c6f0fcc2b (diff) | |
download | gitlab-ce-dbd6b2dc0ad4a379490cbb1ea23eee9d90526163.tar.gz |
Changed build header username area to use the full name with the username as the tooltip
-rw-r--r-- | app/views/projects/builds/_user.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/projects/builds/_user.html.haml b/app/views/projects/builds/_user.html.haml index 2642de8021d..75101b78652 100644 --- a/app/views/projects/builds/_user.html.haml +++ b/app/views/projects/builds/_user.html.haml @@ -1,4 +1,5 @@ by %a{ href: user_path(@build.user) } = image_tag avatar_icon(@build.user, 24), class: "avatar s24" - %strong= @build.user.to_reference + %strong{ data: { toggle: 'tooltip', placement: 'top', title: @build.user.to_reference } } + = @build.user.name |