diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-05 20:20:27 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-10-05 20:21:08 +0200 |
commit | e5e6c846ead9ea4cacc53c2308c5ca86ce1ab766 (patch) | |
tree | 874c98a810e15f5b99115f918729b068d963d13c /app/views/ci | |
parent | a2af080a06b3439d37258d88ac6d6db9ef51c6a5 (diff) | |
download | gitlab-ce-e5e6c846ead9ea4cacc53c2308c5ca86ce1ab766.tar.gz |
Fix builds view
Diffstat (limited to 'app/views/ci')
-rw-r--r-- | app/views/ci/builds/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/ci/builds/show.html.haml b/app/views/ci/builds/show.html.haml index c42d11bf05d..be33c5e8aa4 100644 --- a/app/views/ci/builds/show.html.haml +++ b/app/views/ci/builds/show.html.haml @@ -1,7 +1,7 @@ #up-build-trace - if @commit.matrix_for_ref?(@build.ref) %ul.center-top-menu - - @commit.builds_without_retry_for_ref(build.ref).each do |build| + - @commit.builds_without_retry_for_ref(@build.ref).each do |build| %li{class: ('active' if build == @build) } = link_to ci_project_build_url(@project, build) do = ci_icon_for_status(build.status) |