From f1ddc1529f36879af5b312263a1d9e6207595d1e Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Sun, 15 Nov 2020 07:16:40 -0500 Subject: [PATCH] fix bug in cloudConfigs construction, exclude clouds that were checked then unchecked --- src/auth/ActivationPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/ActivationPage.vue b/src/auth/ActivationPage.vue index a8d0c58..0ae20df 100644 --- a/src/auth/ActivationPage.vue +++ b/src/auth/ActivationPage.vue @@ -264,7 +264,7 @@ domain: this.domainActivationObject() }; for (let cloud in this.cloudsEnabled) { - if (this.cloudsEnabled.hasOwnProperty(cloud)) { + if (this.cloudsEnabled.hasOwnProperty(cloud) && this.cloudsEnabled[cloud]) { activation.cloudConfigs[cloud] = { config: this.configValues[cloud], credentials: this.credentialValues[cloud]