summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-23 09:46:06 -0500
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-23 09:46:06 -0500
commit27a5a4e4306be921a2b6e09f2c306408b828c0cd (patch)
treec76d2f256f7efeacb18af10c64e2495bf1fd12f0
parent9c1b3d88db1482bb1fb394275c8119a77fdf9b88 (diff)
downloadgitlab-ce-17736-builds-hotfix.tar.gz
Put column headers back17736-builds-hotfix
-rw-r--r--app/views/projects/commit/_ci_commit.html.haml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/views/projects/commit/_ci_commit.html.haml b/app/views/projects/commit/_ci_commit.html.haml
index 290e19c69e3..1abd4e6f3d3 100644
--- a/app/views/projects/commit/_ci_commit.html.haml
+++ b/app/views/projects/commit/_ci_commit.html.haml
@@ -37,5 +37,16 @@
.table-holder
%table.table.builds
+ %thead
+ %tr
+ %th Status
+ %th Build ID
+ %th Name
+ %th Tags
+ %th Duration
+ %th Finished at
+ - if @project.build_coverage_enabled?
+ %th Coverage
+ %th
- ci_commit.statuses.stages.each do |stage|
= render 'projects/commit/ci_stage', stage: stage, statuses: ci_commit.statuses.where(stage: stage)