fix(edge-stack): avoid reference of undefined EE-6914 (#11463)

pull/8244/merge
cmeng 8 months ago committed by GitHub
parent 44ef5bb12a
commit 4ca6292805
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -345,7 +345,7 @@ export default class CreateEdgeStackViewController {
RepositoryUsername: this.formValues.RepositoryUsername,
RepositoryPassword: this.formValues.RepositoryPassword,
TLSSkipVerify: this.formValues.TLSSkipVerify,
CreatedFromCustomTemplateID: this.state.templateValues.template.Id,
CreatedFromCustomTemplateID: this.state.templateValues.template && this.state.templateValues.template.Id,
};
return this.EdgeStackService.createStackFromGitRepository(
{

Loading…
Cancel
Save