summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-01-07 12:23:30 +0000
committerKushal Pandya <kushalspandya@gmail.com>2019-01-07 12:23:30 +0000
commitbb482389308065bc0c07a8023c153f01d3c34990 (patch)
tree4254de5942c59324784b0f1341f0f47b1bb0f670 /app/helpers
parentfca174722c2c859ce6ef6c7cbbfeea3c7d1d7f74 (diff)
parent33cfeea1766602e4b390e841673b0516c593874a (diff)
downloadgitlab-ce-bb482389308065bc0c07a8023c153f01d3c34990.tar.gz
Merge branch '54981-extended-user-centric-tooltips-add-missing-cases' into 'master'
Resolve "Extended user centric tooltips: Add missing cases" Closes #54981 See merge request gitlab-org/gitlab-ce!24132
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/commits_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/commits_helper.rb b/app/helpers/commits_helper.rb
index d52cfd6e37a..d58f634425b 100644
--- a/app/helpers/commits_helper.rb
+++ b/app/helpers/commits_helper.rb
@@ -154,7 +154,7 @@ module CommitsHelper
if user.nil?
mail_to(source_email, text, link_options)
else
- link_to(text, user_path(user), link_options)
+ link_to(text, user_path(user), { class: "commit-#{options[:source]}-link js-user-link", data: { user_id: user.id } })
end
end