summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJosé Iván Vargas López <jvargas@gitlab.com>2018-08-24 16:45:55 +0000
committerJose Vargas <jvargas@gitlab.com>2018-08-24 14:47:14 -0500
commita70266767b1f565a98eece14e51d309f1b09081c (patch)
tree807c9051e3a85880b725f9dc6abd02a3920e100e /lib
parent18ebc1882f3f5e4562756a42a8b0ebf751e5ed44 (diff)
downloadgitlab-ce-a70266767b1f565a98eece14e51d309f1b09081c.tar.gz
Merge branch 'security-2694-pipeline-11-1' into 'security-11-1'
[11.1] Removes <br> sent from backend on tooltips in jobs See merge request gitlab/gitlabhq!2457
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/ci/status/build/failed.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/status/build/failed.rb b/lib/gitlab/ci/status/build/failed.rb
index 155f4fc1343..bbdf1b4496d 100644
--- a/lib/gitlab/ci/status/build/failed.rb
+++ b/lib/gitlab/ci/status/build/failed.rb
@@ -31,7 +31,7 @@ module Gitlab
end
def description
- "<br> (#{REASONS[subject.failure_reason]})"
+ "- (#{REASONS[subject.failure_reason]})"
end
end
end