summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-14 01:49:41 +0100
committerLuke Bennett <lukeeeebennettplus@gmail.com>2016-09-27 22:11:13 +0100
commitd4444c53491b3c9f2bd3a3112eacce6de66edc50 (patch)
tree7ef4d540e969bfeb4393384a7a7647ab79e467d4 /app/helpers
parent5e5f6af869be2e0cce0b1e4d19a551a52a78612e (diff)
downloadgitlab-ce-d4444c53491b3c9f2bd3a3112eacce6de66edc50.tar.gz
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')
-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