summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-24 12:31:46 -0500
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-24 12:31:46 -0500
commit65925e699839e1f2e01c6c5f7a355d9fae0337d9 (patch)
tree9eb89535e11bc1ab7371e0aebf75b6aa23790ab4
parent4c058fc429a4173e033a4babcb379c52b5ed13e3 (diff)
downloadgitlab-ce-improve-pipeline-design.tar.gz
Remove top block from builds pageimprove-pipeline-design
-rw-r--r--app/views/admin/builds/index.html.haml1
-rw-r--r--app/views/projects/builds/index.html.haml3
-rw-r--r--spec/features/builds_spec.rb1
3 files changed, 0 insertions, 5 deletions
diff --git a/app/views/admin/builds/index.html.haml b/app/views/admin/builds/index.html.haml
index ed24757087b..d74cf8598e8 100644
--- a/app/views/admin/builds/index.html.haml
+++ b/app/views/admin/builds/index.html.haml
@@ -47,4 +47,3 @@
= render "admin/builds/build", build: build
= paginate @builds, theme: 'gitlab'
-
diff --git a/app/views/projects/builds/index.html.haml b/app/views/projects/builds/index.html.haml
index 98f4a9416e5..7c0bec264ab 100644
--- a/app/views/projects/builds/index.html.haml
+++ b/app/views/projects/builds/index.html.haml
@@ -35,9 +35,6 @@
= icon('wrench')
%span CI Lint
-.row-content-block
- #{(@scope || 'all').capitalize} builds from this project
-
%ul.content-list
- if @builds.blank?
%li
diff --git a/spec/features/builds_spec.rb b/spec/features/builds_spec.rb
index f83a78308e3..090a941958f 100644
--- a/spec/features/builds_spec.rb
+++ b/spec/features/builds_spec.rb
@@ -43,7 +43,6 @@ describe "Builds" do
end
it { expect(page).to have_selector('.nav-links li.active', text: 'All') }
- it { expect(page).to have_selector('.row-content-block', text: 'All builds from this project') }
it { expect(page).to have_content @build.short_sha }
it { expect(page).to have_content @build.ref }
it { expect(page).to have_content @build.name }