diff options
author | Luke Bennett <lukeeeebennettplus@gmail.com> | 2016-09-01 22:00:43 +0100 |
---|---|---|
committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2016-11-09 12:23:21 +0000 |
commit | 7730f5f7ec363e1f38f3b1afc88a844d8fae533d (patch) | |
tree | 89881a6d99489633ec205b1aa46e8e22cebef055 /app/views | |
parent | a0d5bb0bb84d15efaedb78025bd480758b2a4246 (diff) | |
download | gitlab-ce-7730f5f7ec363e1f38f3b1afc88a844d8fae533d.tar.gz |
Removed soon-to-be un-needed project title additions from builds and environments21764-build-page-title
Removed unneeded `project_title` code and last reference
Added CHANGELOG entry
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/artifacts/browse.html.haml | 1 | ||||
-rw-r--r-- | app/views/projects/builds/show.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/environments/_header_title.html.haml | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/app/views/projects/artifacts/browse.html.haml b/app/views/projects/artifacts/browse.html.haml index 539d07d634a..ede01dcc1aa 100644 --- a/app/views/projects/artifacts/browse.html.haml +++ b/app/views/projects/artifacts/browse.html.haml @@ -1,5 +1,4 @@ - page_title 'Artifacts', "#{@build.name} (##{@build.id})", 'Builds' -- header_title project_title(@project, "Builds", project_builds_path(@project)) .top-block.row-content-block.clearfix .pull-right diff --git a/app/views/projects/builds/show.html.haml b/app/views/projects/builds/show.html.haml index ae7a7ecb392..f533eec642e 100644 --- a/app/views/projects/builds/show.html.haml +++ b/app/views/projects/builds/show.html.haml @@ -1,6 +1,6 @@ - @no_container = true - page_title "#{@build.name} (##{@build.id})", "Builds" -- header_title project_title(@project, "Builds", project_builds_path(@project)) +- trace_with_state = @build.trace_with_state = render "projects/pipelines/head", build_subnav: true %div{ class: container_class } diff --git a/app/views/projects/environments/_header_title.html.haml b/app/views/projects/environments/_header_title.html.haml deleted file mode 100644 index e056fccad5d..00000000000 --- a/app/views/projects/environments/_header_title.html.haml +++ /dev/null @@ -1 +0,0 @@ -- header_title project_title(@project, "Environments", project_environments_path(@project)) |