Просмотр исходного кода

fix: activate status filters for preview environments

Soham Parekh 3 лет назад
Родитель
Сommit
a7acd689a3

+ 1 - 1
dashboard/src/main/home/cluster-dashboard/preview-environments/deployments/DeploymentList.tsx

@@ -23,7 +23,7 @@ import { getPRDeploymentList, validatePorterYAML } from "../utils";
 import { PorterYAMLErrors } from "../errors";
 import PorterYAMLErrorsModal from "../components/PorterYAMLErrorsModal";
 
-const AvailableStatusFilters = ["all", "created", "failed", "not_deployed"];
+const AvailableStatusFilters = ["all", "created", "failed"];
 
 type AvailableStatusFiltersType = typeof AvailableStatusFilters[number];