You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by vi...@apache.org on 2012/06/07 04:04:59 UTC

svn commit: r1347297 - in /incubator/ambari/branches/ambari-186: CHANGES.txt hmc/js/reviewAndDeploy.js

Author: vikram
Date: Thu Jun  7 02:04:59 2012
New Revision: 1347297

URL: http://svn.apache.org/viewvc?rev=1347297&view=rev
Log:
AMBARI-478. Checkbox in the review and deploy page does not show proper state (Contributed by Vikram)

Modified:
    incubator/ambari/branches/ambari-186/CHANGES.txt
    incubator/ambari/branches/ambari-186/hmc/js/reviewAndDeploy.js

Modified: incubator/ambari/branches/ambari-186/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/CHANGES.txt?rev=1347297&r1=1347296&r2=1347297&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/CHANGES.txt (original)
+++ incubator/ambari/branches/ambari-186/CHANGES.txt Thu Jun  7 02:04:59 2012
@@ -6,6 +6,8 @@ characters wide.
 
 Release 0.1.x - unreleased
 
+  AMBARI-478. Checkbox in the review and deploy page does not show proper state (Vikram)
+
   AMBARI-476. Undefined offset: 0 in /usr/share/hmc/php/db/HMCDBAccessor.php on line 1030 (Hitesh via Vikram)
 
   AMBARI-475. Add missing JS file for making post cluster install Add Nodes work (Yusaku via Vikram)

Modified: incubator/ambari/branches/ambari-186/hmc/js/reviewAndDeploy.js
URL: http://svn.apache.org/viewvc/incubator/ambari/branches/ambari-186/hmc/js/reviewAndDeploy.js?rev=1347297&r1=1347296&r2=1347297&view=diff
==============================================================================
--- incubator/ambari/branches/ambari-186/hmc/js/reviewAndDeploy.js (original)
+++ incubator/ambari/branches/ambari-186/hmc/js/reviewAndDeploy.js Thu Jun  7 02:04:59 2012
@@ -44,8 +44,9 @@ function renderDeploySummary (deployInfo
           var checkVal = perServiceInfo.properties[mPropertiesKey].value;
           if (checkVal) {
             valueAttr = 'checked=yes';
+          } else {
+            valueAttr = '';
           }
-          valueAttr = '';
         }
 
         propertySummary += '<div class="formElement">' +