Ivan Galakhov 4 лет назад
Родитель
Сommit
f74e420721
1 измененных файлов с 2 добавлено и 2 удалено
  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,