Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2019-01-04 18:34:01 +0300
committerTim Zallmann <tzallmann@gitlab.com>2019-01-04 18:34:01 +0300
commit1484a7eb7d4f943cd770ad2988b5e73fdc665860 (patch)
tree4c26559a1355ceeb8a8e3da3e411c43a10ea93e2 /app/helpers/commits_helper.rb
parent4543ef099d29b383462bcc1c71973c43385cd8dc (diff)
Added User Popovers to Commit Items and Member Lists
Diffstat (limited to 'app/helpers/commits_helper.rb')
-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..7abd355287f 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