Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2017-10-02 17:33:39 +0300
committerJarka Kadlecova <jarka@gitlab.com>2017-11-01 16:20:19 +0300
commitecafcd048612f5d72dc7ed3f5871502dc24bd82b (patch)
treea68f50395cf1bae40d68cddb5dd84786850b02e4
parentb1ccae7632c8f702e28f80e135e95d3214a14e69 (diff)
Merge branch '38641-repo-editor-callout' into 'master'
Removes auto devops callout from repo editor view See merge request gitlab-org/gitlab-ce!14616
-rw-r--r--app/views/projects/tree/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/tree/show.html.haml b/app/views/projects/tree/show.html.haml
index d84a1fd7ee1..82c6439da9c 100644
--- a/app/views/projects/tree/show.html.haml
+++ b/app/views/projects/tree/show.html.haml
@@ -14,7 +14,7 @@
= render "projects/commits/head"
%div{ class: [container_class, ("limit-container-width" unless fluid_layout)] }
- - if show_auto_devops_callout?(@project)
+ - if show_auto_devops_callout?(@project) && !show_new_repo?
= render 'shared/auto_devops_callout'
= render 'projects/last_push'
= render 'projects/files', commit: @last_commit, project: @project, ref: @ref, content_url: project_tree_path(@project, @id)