summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-01-11 16:52:46 -0600
committerMike Greiling <mike@pixelcog.com>2018-01-11 16:52:46 -0600
commit74428414aa7e770be8a783bc52dd08feb5a63f64 (patch)
tree1b17b701778d3d77a9c73a1d2879d323f32c6ea4
parent16e895801e5ba2f27de6d33511c8ac46297048eb (diff)
downloadgitlab-ce-37077-subscribe-button-tooltip-on-issues-page-causes-visual-stuttering.tar.gz
fix case where tooltip messes up :last-child selector37077-subscribe-button-tooltip-on-issues-page-causes-visual-stuttering
-rw-r--r--app/views/dashboard/issues.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/dashboard/issues.html.haml b/app/views/dashboard/issues.html.haml
index 42941acc508..3e85535dae0 100644
--- a/app/views/dashboard/issues.html.haml
+++ b/app/views/dashboard/issues.html.haml
@@ -7,7 +7,7 @@
.top-area
= render 'shared/issuable/nav', type: :issues
.nav-controls
- = link_to params.merge(rss_url_options), class: 'btn has-tooltip', title: 'Subscribe' do
+ = link_to params.merge(rss_url_options), class: 'btn has-tooltip', data: { container: 'body' }, title: 'Subscribe' do
= icon('rss')
= render 'shared/new_project_item_select', path: 'issues/new', label: "New issue", with_feature_enabled: 'issues', type: :issues