diff --git a/app/edge/views/edge-stacks/createEdgeStackView/create-edge-stack-view.controller.js b/app/edge/views/edge-stacks/createEdgeStackView/create-edge-stack-view.controller.js index a3969ae35..f8293cfd3 100644 --- a/app/edge/views/edge-stacks/createEdgeStackView/create-edge-stack-view.controller.js +++ b/app/edge/views/edge-stacks/createEdgeStackView/create-edge-stack-view.controller.js @@ -105,9 +105,6 @@ export default class CreateEdgeStackViewController { } if (type === 'custom') { - const fileContent = await getCustomTemplateFile({ id: template.Id, git: !!template.GitConfig }); - this.state.templateValues.file = fileContent; - this.formValues = { ...this.formValues, DeploymentType: template.Type === StackType.Kubernetes ? DeploymentType.Kubernetes : DeploymentType.Compose, @@ -121,6 +118,9 @@ export default class CreateEdgeStackViewController { } : {}), }; + + const fileContent = await getCustomTemplateFile({ id: template.Id, git: !!template.GitConfig }); + this.state.templateValues.file = fileContent; } if (type === 'app') {