瀏覽代碼

fix bug in cloudConfigs construction, exclude clouds that were checked then unchecked

pull/73/head
Jonathan Cobb 3 年之前
父節點
當前提交
f1ddc1529f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/auth/ActivationPage.vue

+ 1
- 1
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]


Loading…
取消
儲存