Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2017-09-13 10:28:58 +0300
committerGrzegorz Bizon <grzegorz@gitlab.com>2017-09-13 10:28:58 +0300
commit12accbf796ba2de01359a9eb21aabfa6cc3dde6a (patch)
tree9d2539737954c9463b127a65c7f39cd067c0964b /app/helpers
parentb097d065c5e8d2e4115a4ad6361f61cbbac78a9e (diff)
parentd63aebb7ec18617c097f52a4cfc8ffd3300489d1 (diff)
Merge branch '36907-new-issue-from-failed-build-no-longer-links-to-failed-build' into 'master'
Resolve "New issue from failed build no longer links to failed build" Closes #36907 See merge request !13790
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/builds_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/builds_helper.rb b/app/helpers/builds_helper.rb
index 85bc784d53c..aa3a9a055a0 100644
--- a/app/helpers/builds_helper.rb
+++ b/app/helpers/builds_helper.rb
@@ -30,7 +30,7 @@ module BuildsHelper
def build_failed_issue_options
{
- title: "Build Failed ##{@build.id}",
+ title: "Job Failed ##{@build.id}",
description: project_job_url(@project, @build)
}
end