summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-10-12 08:52:33 -0500
committerKamil Trzcinski <ayufan@ayufan.eu>2016-10-13 13:24:25 +0200
commitbdc0a8351dafd002b7370cf3ffce1f9d7d422fa0 (patch)
tree5b5f1dffb18018b7b317232152b07691995084de
parent4ea812d55a4ed6426b8187e774a0935e20ea34a2 (diff)
downloadgitlab-ce-bdc0a8351dafd002b7370cf3ffce1f9d7d422fa0.tar.gz
Fix encoding issues on pipeline commits
-rw-r--r--app/views/projects/ci/pipelines/_pipeline.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml
index 36eadbd2bf1..d53d2cee90c 100644
--- a/app/views/projects/ci/pipelines/_pipeline.html.haml
+++ b/app/views/projects/ci/pipelines/_pipeline.html.haml
@@ -32,7 +32,7 @@
%p.commit-title
- if commit = pipeline.commit
= author_avatar(commit, size: 20)
- = link_to_gfm truncate(commit.title, length: 60), namespace_project_commit_path(pipeline.project.namespace, pipeline.project, commit.id), class: "commit-row-message"
+ = link_to_gfm truncate(commit.title, length: 60, escape: false), namespace_project_commit_path(pipeline.project.namespace, pipeline.project, commit.id), class: "commit-row-message"
- else
Cant find HEAD commit for this branch