diff options
author | Mike Greiling <mike@pixelcog.com> | 2018-11-05 12:58:46 -0600 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2018-11-08 23:26:04 +1300 |
commit | 1eadb490ebf70a3254b9004b32ce8b7a60c75838 (patch) | |
tree | 56143c65786d045ed56c20165671f51e412653dd | |
parent | a28fa6b933788d62a3e95e3c470e0c50efb5f43a (diff) | |
download | gitlab-ce-1eadb490ebf70a3254b9004b32ce8b7a60c75838.tar.gz |
Remove "project namespace" from cluster index page
-rw-r--r-- | app/views/clusters/clusters/_cluster.html.haml | 5 | ||||
-rw-r--r-- | app/views/clusters/clusters/index.html.haml | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/app/views/clusters/clusters/_cluster.html.haml b/app/views/clusters/clusters/_cluster.html.haml index facbcb7fc59..09f45fc3816 100644 --- a/app/views/clusters/clusters/_cluster.html.haml +++ b/app/views/clusters/clusters/_cluster.html.haml @@ -1,14 +1,11 @@ .gl-responsive-table-row - .table-section.section-30 + .table-section.section-60 .table-mobile-header{ role: "rowheader" }= s_("ClusterIntegration|Kubernetes cluster") .table-mobile-content = link_to cluster.name, cluster.show_path .table-section.section-30 .table-mobile-header{ role: "rowheader" }= s_("ClusterIntegration|Environment scope") .table-mobile-content= cluster.environment_scope - .table-section.section-30 - .table-mobile-header{ role: "rowheader" }= s_("ClusterIntegration|Project namespace") - .table-mobile-content= cluster.platform_kubernetes&.actual_namespace .table-section.section-10 .table-mobile-header{ role: "rowheader" } .table-mobile-content diff --git a/app/views/clusters/clusters/index.html.haml b/app/views/clusters/clusters/index.html.haml index 7ec5f6b24ba..544cb278a74 100644 --- a/app/views/clusters/clusters/index.html.haml +++ b/app/views/clusters/clusters/index.html.haml @@ -13,12 +13,10 @@ = render 'clusters/clusters/buttons' .ci-table.js-clusters-list .gl-responsive-table-row.table-row-header{ role: "row" } - .table-section.section-30{ role: "rowheader" } + .table-section.section-60{ role: "rowheader" } = s_("ClusterIntegration|Kubernetes cluster") .table-section.section-30{ role: "rowheader" } = s_("ClusterIntegration|Environment scope") - .table-section.section-30{ role: "rowheader" } - = s_("ClusterIntegration|Project namespace") .table-section.section-10{ role: "rowheader" } - @clusters.each do |cluster| = render "cluster", cluster: cluster.present(current_user: current_user) |