Explorar el Código

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

pull/73/head
Jonathan Cobb hace 3 años
padre
commit
f1ddc1529f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/auth/ActivationPage.vue

+ 1
- 1
src/auth/ActivationPage.vue Ver fichero

@@ -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]


Cargando…
Cancelar
Guardar