f093ceb4a0
Some pipeline status icon tooltips were showing "Commit: ..." which customers found to be misleading since it was not the commit that was failing but the pipeline. We are changing all status icon tooltips to say "Pipeline: ..." instead of "Commit: ..." now.
14 lines
846 B
Text
14 lines
846 B
Text
- status = local_assigns.fetch(:status)
|
|
- size = local_assigns.fetch(:size, 16)
|
|
- tooltip_placement = local_assigns.fetch(:tooltip_placement, "left")
|
|
- path = local_assigns.fetch(:path, status.has_details? ? status.details_path : nil)
|
|
- option_css_classes = local_assigns.fetch(:option_css_classes, '')
|
|
- css_classes = "ci-status-link ci-status-icon ci-status-icon-#{status.group} has-tooltip #{option_css_classes}"
|
|
- title = s_("PipelineStatusTooltip|Pipeline: %{ci_status}") % {ci_status: status.label}
|
|
|
|
- if path
|
|
= link_to path, class: css_classes, title: title, data: { placement: tooltip_placement } do
|
|
= sprite_icon(status.icon, size: size)
|
|
- else
|
|
%span{ class: css_classes, title: title, data: { placement: tooltip_placement } }
|
|
= sprite_icon(status.icon, size: size)
|