gitlab-org--gitlab-foss/app/views/ci/status/_icon.html.haml
Scott Hampton 99b2a5a2eb Remove extraneous data attribute
I had `html: true` as a data attribute, but the tooltip was just text.
2019-02-27 12:59:53 -07:00

16 lines
924 B
Text

- status = local_assigns.fetch(:status)
- size = local_assigns.fetch(:size, 16)
- type = local_assigns.fetch(:type, 'pipeline')
- tooltip_placement = local_assigns.fetch(:tooltip_placement, "left")
- path = local_assigns.fetch(:path, status.has_details? ? status.details_path : nil)
- css_classes = "ci-status-link ci-status-icon ci-status-icon-#{status.group} has-tooltip"
- title = s_("PipelineStatusTooltip|Pipeline: %{ci_status}") % {ci_status: status.label}
- if type == 'commit'
- title = s_("PipelineStatusTooltip|Commit: %{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)