소스 검색

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

pull/73/head
Jonathan Cobb 4 년 전
부모
커밋
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]


불러오는 중...
취소
저장