diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2018-07-17 16:27:08 +0100 |
---|---|---|
committer | Luke Bennett <lukeeeebennettplus@gmail.com> | 2018-07-17 16:27:08 +0100 |
commit | 417e79bbbc98af989bfafa70e826e2f21cc1d014 (patch) | |
tree | df414a73827f250e89184fe025dcf98d819d1169 /app | |
parent | 258086c904fdf740f73015905ca43ed2081560c8 (diff) | |
download | gitlab-ce-417e79bbbc98af989bfafa70e826e2f21cc1d014.tar.gz |
set has_tooltip to false for commit author_avatar
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/commits/_commit.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml index 90e55fd0fb0..4f0d8211a01 100644 --- a/app/views/projects/commits/_commit.html.haml +++ b/app/views/projects/commits/_commit.html.haml @@ -19,7 +19,7 @@ %li.commit.flex-row.js-toggle-container{ id: "commit-#{commit.short_id}" } .avatar-cell.d-none.d-sm-block - = author_avatar(commit, size: 36) + = author_avatar(commit, size: 36, has_tooltip: false) .commit-detail.flex-list .commit-content.qa-commit-content @@ -38,7 +38,7 @@ = sprite_icon('ellipsis_h', size: 12) .commiter - - commit_author_link = commit_author_link(commit, avatar: false, size: 24) + - commit_author_link = commit_author_link(commit, avatar: false, size: 24, has_tooltip: false) - commit_timeago = time_ago_with_tooltip(commit.authored_date, placement: 'bottom') - commit_text = _('%{commit_author_link} authored %{commit_timeago}') % { commit_author_link: commit_author_link, commit_timeago: commit_timeago } #{ commit_text.html_safe } |