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:
authorPhil Hughes <me@iamphill.com>2016-09-06 12:36:09 +0300
committerPhil Hughes <me@iamphill.com>2016-09-06 12:36:09 +0300
commit117893eee75edc568be51c0a2cc79c2ac65981f2 (patch)
treec3ddab7e11e465b5057ea6d95eab26e9bd9fe372 /app/helpers/avatars_helper.rb
parentad599eb65c8ce483a7faaffe226ec7ce53da0f55 (diff)
Fix layout issues with blame table
Closes #21216
Diffstat (limited to 'app/helpers/avatars_helper.rb')
-rw-r--r--app/helpers/avatars_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/helpers/avatars_helper.rb b/app/helpers/avatars_helper.rb
index aa8acbe7567..df41473543b 100644
--- a/app/helpers/avatars_helper.rb
+++ b/app/helpers/avatars_helper.rb
@@ -14,7 +14,8 @@ module AvatarsHelper
avatar_icon(options[:user] || options[:user_email], avatar_size),
class: "avatar has-tooltip hidden-xs s#{avatar_size}",
alt: "#{user_name}'s avatar",
- title: user_name
+ title: user_name,
+ data: { container: 'body' }
)
if options[:user]