Przeglądaj źródła

fix: hide all vendored ack charts (#3861)

jose-fully-ported 2 lat temu
rodzic
commit
73dbb15b80
1 zmienionych plików z 28 dodań i 1 usunięć
  1. 28 1
      dashboard/src/main/home/launch/Launch.tsx

+ 28 - 1
dashboard/src/main/home/launch/Launch.tsx

@@ -34,7 +34,34 @@ type TabOption = {
   value: string;
 };
 
-const HIDDEN_CHARTS = ["porter-agent", "loki"];
+const HIDDEN_CHARTS = [
+  "ack-chart",
+  "apigatewayv2-chart",
+  "applicationautoscaling-chart",
+  "aws-cloudwatch-metrics",
+  "cloudtrail-chart",
+  "dynamodb-chart",
+  "ec2-chart",
+  "ecr-chart",
+  "eks-chart",
+  "elasticache-chart",
+  "emrcontainers-chart",
+  "eventbridge-chart",
+  "iam-chart",
+  "kms-chart",
+  "lambda-chart",
+  "loki",
+  "memorydb-chart",
+  "pipes-chart",
+  "porter-agent",
+  "prometheusservice-chart",
+  "rds-chart",
+  "s3-chart",
+  "sagemaker-chart",
+  "sfn-chart",
+  "sns-chart",
+  "sqs-chart",
+];
 
 type PropsType = RouteComponentProps & {};