소스 검색

AMBARI-4211 Empty content of review step in Add Host wizard. (atkach)

atkach 11 년 전
부모
커밋
e66947e815
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      ambari-web/app/controllers/wizard/step8_controller.js

+ 5 - 3
ambari-web/app/controllers/wizard/step8_controller.js

@@ -84,9 +84,11 @@ App.WizardStep8Controller = Em.Controller.extend({
       App.router.get('mainAdminSecurityController').setSecurityStatus();
     }
     this.clearStep();
-    this.formatProperties();
-    this.loadGlobals();
-    this.loadConfigs();
+    if (this.get('content.serviceConfigProperties')) {
+      this.formatProperties();
+      this.loadGlobals();
+      this.loadConfigs();
+    }
     this.loadClusterInfo();
     this.loadServices();
     this.set('isSubmitDisabled', false);