summaryrefslogtreecommitdiff
path: root/app/presenters
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-05-28 11:02:06 +0100
committerFilipa Lacerda <filipa@gitlab.com>2019-05-30 09:58:41 +0100
commit51c35a4ab54e94239a623082d85378549739bea8 (patch)
treeb282e77e0f1d5984b95980e7e46bfb2e621ea1f8 /app/presenters
parent4a9387242dbbfee9e9ddc7b46eb69ad6a2f4ba2c (diff)
downloadgitlab-ce-51c35a4ab54e94239a623082d85378549739bea8.tar.gz
Fixes ref being displayed as raw HTML609120-ref-link
The ref to the branch was being displayed as raw HTML in the Pipelines page
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/ci/pipeline_presenter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/presenters/ci/pipeline_presenter.rb b/app/presenters/ci/pipeline_presenter.rb
index 944895904fe..358473d0a74 100644
--- a/app/presenters/ci/pipeline_presenter.rb
+++ b/app/presenters/ci/pipeline_presenter.rb
@@ -43,7 +43,7 @@ module Ci
if pipeline.ref_exists?
_("for %{link_to_pipeline_ref}").html_safe % { link_to_pipeline_ref: link_to_pipeline_ref }
else
- _("for %{ref}") % { ref: content_tag(:span, pipeline.ref, class: 'ref-name') }
+ _("for %{ref}").html_safe % { ref: content_tag(:span, pipeline.ref, class: 'ref-name') }
end
end
end