diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-01-11 16:52:46 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2018-01-11 16:52:46 -0600 |
commit | 74428414aa7e770be8a783bc52dd08feb5a63f64 (patch) | |
tree | 1b17b701778d3d77a9c73a1d2879d323f32c6ea4 /app/views/dashboard | |
parent | 16e895801e5ba2f27de6d33511c8ac46297048eb (diff) | |
download | gitlab-ce-74428414aa7e770be8a783bc52dd08feb5a63f64.tar.gz |
fix case where tooltip messes up :last-child selector37077-subscribe-button-tooltip-on-issues-page-causes-visual-stuttering
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/issues.html.haml | 2 |
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 |