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:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-14 03:49:41 +0300
committerLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-28 00:11:13 +0300
commitd4444c53491b3c9f2bd3a3112eacce6de66edc50 (patch)
tree7ef4d540e969bfeb4393384a7a7647ab79e467d4 /app/helpers/ci_status_helper.rb
parent5e5f6af869be2e0cce0b1e4d19a551a52a78612e (diff)
Commit status icon now links to pipelines tab of commit view
Removed commit from pipeline list items Used local_assigns and changed to positive naming ffor boolean props
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r--app/helpers/ci_status_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index 639deb7c521..b7f48630bd4 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -56,7 +56,7 @@ module CiStatusHelper
def render_commit_status(commit, tooltip_placement: 'auto left')
project = commit.project
- path = builds_namespace_project_commit_path(project.namespace, project, commit)
+ path = pipelines_namespace_project_commit_path(project.namespace, project, commit)
render_status_with_link('commit', commit.status, path, tooltip_placement: tooltip_placement)
end