Browse Source

AMBARI-1139. Disable Misc section in Customize Services page of the Install Wizard. (Srimanth Gunturi via yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1431857 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 năm trước cách đây
mục cha
commit
29a817aa5f
2 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 3 0
      CHANGES.txt
  2. 2 1
      ambari-web/app/controllers/wizard/step7_controller.js

+ 3 - 0
CHANGES.txt

@@ -695,6 +695,9 @@ AMBARI-666 branch (unreleased changes)
 
   BUG FIXES
 
+  AMBARI-1139. Disable Misc section in Customize Services page of the Install
+  Wizard. (Srimanth Gunturi via yusaku) 
+
   AMBARI-1158. Fiters are not working correctly on Hosts page. (yusaku)
 
   AMBARI-1157. Host component operation causes lags in status/action pulldown

+ 2 - 1
ambari-web/app/controllers/wizard/step7_controller.js

@@ -172,7 +172,8 @@ App.WizardStep7Controller = Em.Controller.extend({
 
         console.log('pushing ' + serviceConfig.serviceName, serviceConfig);
 
-        if (this.get('selectedServiceNames').contains(serviceConfig.serviceName) || serviceConfig.serviceName === 'MISC') {
+        if (this.get('selectedServiceNames').contains(serviceConfig.serviceName)) {
+          // AMBARI-1139 - Hiding MISC section // || serviceConfig.serviceName === 'MISC') {
           serviceConfig.showConfig = true;
         }