Commit 145143ac authored by Phil Hughes's avatar Phil Hughes

Changed named argument

Set position to auto left so that if it is off-screen it goes to the right
parent bc19acab
...@@ -42,12 +42,12 @@ module CiStatusHelper ...@@ -42,12 +42,12 @@ module CiStatusHelper
icon(icon_name + ' fw') icon(icon_name + ' fw')
end end
def render_ci_status(ci_commit, placement: 'left') def render_ci_status(ci_commit, tooltip_placement: 'auto left')
link_to ci_status_icon(ci_commit), link_to ci_status_icon(ci_commit),
ci_status_path(ci_commit), ci_status_path(ci_commit),
class: "ci-status-link ci-status-icon-#{ci_commit.status.dasherize}", class: "ci-status-link ci-status-icon-#{ci_commit.status.dasherize}",
title: "Build #{ci_status_label(ci_commit)}", title: "Build #{ci_status_label(ci_commit)}",
data: { toggle: 'tooltip', placement: placement } data: { toggle: 'tooltip', placement: tooltip_placement }
end end
def no_runners_for_project?(project) def no_runners_for_project?(project)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
%li %li
%span.merge-request-ci-status %span.merge-request-ci-status
- if merge_request.ci_commit - if merge_request.ci_commit
= render_ci_status(merge_request.ci_commit, placement: 'bottom') = render_ci_status(merge_request.ci_commit)
- elsif has_any_ci - elsif has_any_ci
= icon('blank fw') = icon('blank fw')
%span.merge-request-id %span.merge-request-id
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment