diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-11-06 16:25:15 -0600 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2018-11-08 23:28:30 +1300 |
commit | 9bdcf23a5e217df43b3dd671ecdba378f93c29d3 (patch) | |
tree | ca0acc6e4f5b502e5d980453ffda6b194fe3e591 | |
parent | 83b8321aeab33e8814c717625a592ffb1e27bd44 (diff) | |
download | gitlab-ce-9bdcf23a5e217df43b3dd671ecdba378f93c29d3.tar.gz |
Remove "active" badge from cluster index for now
-rw-r--r-- | app/views/clusters/clusters/_cluster.html.haml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/views/clusters/clusters/_cluster.html.haml b/app/views/clusters/clusters/_cluster.html.haml index c1007ecdc20..6fb7a9a90aa 100644 --- a/app/views/clusters/clusters/_cluster.html.haml +++ b/app/views/clusters/clusters/_cluster.html.haml @@ -4,9 +4,7 @@ .table-mobile-header{ role: "rowheader" }= s_("ClusterIntegration|Kubernetes cluster") .table-mobile-content = link_to cluster.name, cluster.show_path - - if cluster.enabled? - %span.badge.badge-info Active - - else + - unless cluster.enabled? %span.badge.badge-danger Connection disabled .table-section.section-25 .table-mobile-header{ role: "rowheader" }= s_("ClusterIntegration|Environment scope") |