Repository: ambari Updated Branches: refs/heads/trunk cec8e4b75 -> 748ac59fb
AMBARI-6803. Add Hosts Wizard: cannot assign any slaves (clients can be assigned). (jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/748ac59f Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/748ac59f Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/748ac59f Branch: refs/heads/trunk Commit: 748ac59fb977ca41d7fa5ffe6b010f1289e4e07c Parents: cec8e4b Author: Jaimin Jetly <[email protected]> Authored: Fri Aug 8 18:30:10 2014 -0700 Committer: Jaimin Jetly <[email protected]> Committed: Fri Aug 8 18:30:36 2014 -0700 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step6_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/748ac59f/ambari-web/app/controllers/wizard/step6_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step6_controller.js b/ambari-web/app/controllers/wizard/step6_controller.js index 960dc68..4f24b8b 100644 --- a/ambari-web/app/controllers/wizard/step6_controller.js +++ b/ambari-web/app/controllers/wizard/step6_controller.js @@ -232,7 +232,7 @@ App.WizardStep6Controller = Em.Controller.extend({ allChecked: false, isRequired: serviceComponent.get('isRequired'), noChecked: true, - isDisabled: installedServices.someProperty('serviceName',stackService.get('serviceName')) + isDisabled: installedServices.someProperty('serviceName',stackService.get('serviceName')) && this.get('isAddServiceWizard') })); } }, this);
