Ivan Galakhov 4 år sedan
förälder
incheckning
f74e420721
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      dashboard/src/main/home/launch/launch-flow/LaunchFlow.tsx

+ 2 - 2
dashboard/src/main/home/launch/launch-flow/LaunchFlow.tsx

@@ -37,7 +37,7 @@ type StateType = {
   imageTag: string;
 
   actionConfig: ActionConfigType;
-  procfileProcess?: string;
+  procfileProcess: string;
   branch: string;
   repoType: string;
   dockerfilePath: string | null;
@@ -69,7 +69,7 @@ class LaunchFlow extends Component<PropsType, StateType> {
     imageTag: "",
 
     actionConfig: { ...defaultActionConfig },
-    procfileProcess: null as string | null,
+    procfileProcess: "",
     branch: "",
     repoType: "",
     dockerfilePath: null as string | null,