Kaynağa Gözat

chore: minor fix

Soham Parekh 3 yıl önce
ebeveyn
işleme
17fdf802c5

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

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