diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2018-04-11 13:54:55 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-04-11 13:54:55 +0000 |
commit | 28bae3b6bc35d760f51577b30a790c7d3d186588 (patch) | |
tree | c69a34fdc41d476ca3ea568a9820617b1c035d79 /app/helpers | |
parent | f16c6269e1ad3f7acfb63ad8a622248eaced271c (diff) | |
download | gitlab-ce-28bae3b6bc35d760f51577b30a790c7d3d186588.tar.gz |
Resolve "tree/master shows incorrect CI build status"
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/ci_status_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb index 636316da80a..f0afcac5986 100644 --- a/app/helpers/ci_status_helper.rb +++ b/app/helpers/ci_status_helper.rb @@ -94,7 +94,7 @@ module CiStatusHelper def render_project_pipeline_status(pipeline_status, tooltip_placement: 'auto left') project = pipeline_status.project - path = pipelines_project_commit_path(project, pipeline_status.sha) + path = pipelines_project_commit_path(project, pipeline_status.sha, ref: pipeline_status.ref) render_status_with_link( 'commit', @@ -105,7 +105,7 @@ module CiStatusHelper def render_commit_status(commit, ref: nil, tooltip_placement: 'auto left') project = commit.project - path = pipelines_project_commit_path(project, commit) + path = pipelines_project_commit_path(project, commit, ref: ref) render_status_with_link( 'commit', |