mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 14:46:05 +10:00
Moves build status tooltip on issues
This commit is contained in:
@@ -42,12 +42,12 @@ module CiStatusHelper
|
||||
icon(icon_name + ' fw')
|
||||
end
|
||||
|
||||
def render_ci_status(ci_commit)
|
||||
def render_ci_status(ci_commit, placement: 'left')
|
||||
link_to ci_status_icon(ci_commit),
|
||||
ci_status_path(ci_commit),
|
||||
class: "ci-status-link ci-status-icon-#{ci_commit.status.dasherize}",
|
||||
title: "Build #{ci_status_label(ci_commit)}",
|
||||
data: { toggle: 'tooltip', placement: 'left' }
|
||||
data: { toggle: 'tooltip', placement: placement }
|
||||
end
|
||||
|
||||
def no_runners_for_project?(project)
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
%li
|
||||
%span.merge-request-ci-status
|
||||
- if merge_request.ci_commit
|
||||
= render_ci_status(merge_request.ci_commit)
|
||||
= render_ci_status(merge_request.ci_commit, placement: 'bottom')
|
||||
- elsif has_any_ci
|
||||
= icon('blank fw')
|
||||
%span.merge-request-id
|
||||
\!#{merge_request.iid}
|
||||
#{merge_request.to_reference}
|
||||
%span.merge-request-info
|
||||
%strong
|
||||
= link_to_gfm merge_request.title, merge_request_path(merge_request), class: "row_title"
|
||||
|
||||
Reference in New Issue
Block a user