Преглед изворни кода

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…
Откажи
Сачувај