summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-06-27 14:55:24 +0000
committerNick Thomas <nick@gitlab.com>2019-06-27 14:55:24 +0000
commitaa814403a9502358fbe4d6aec71d6e4f68d2acb9 (patch)
tree43c9bd1701c2a062031c0e7ca460c2466e2902ed /app
parent63188fa16fe921da93c605ed376a8ef00eb7edef (diff)
parent80e6e75c9f0f29979afcff90a16a2dd9a75ceb85 (diff)
downloadgitlab-ce-aa814403a9502358fbe4d6aec71d6e4f68d2acb9.tar.gz
Merge branch 'sh-avoid-loading-pipeline-status' into 'master'
Avoid loading pipeline status in search results See merge request gitlab-org/gitlab-ce!30111
Diffstat (limited to 'app')
-rw-r--r--app/views/shared/projects/_list.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/projects/_list.html.haml b/app/views/shared/projects/_list.html.haml
index 13847cd9be1..576ec3e1782 100644
--- a/app/views/shared/projects/_list.html.haml
+++ b/app/views/shared/projects/_list.html.haml
@@ -28,7 +28,7 @@
.js-projects-list-holder
- if any_projects?(projects)
- - load_pipeline_status(projects)
+ - load_pipeline_status(projects) if pipeline_status
%ul.projects-list{ class: css_classes }
- projects.each_with_index do |project, i|
- css_class = (i >= projects_limit) || project.pending_delete? ? 'hide' : nil