Updated Branches: refs/heads/trunk d8bcb50ab -> 0eb9fb9ac
AMBARI-3860 Should allow selecting hosts by components in config-groups dialog (fix reopen). (ababiichuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/0eb9fb9a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/0eb9fb9a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/0eb9fb9a Branch: refs/heads/trunk Commit: 0eb9fb9ac6cdfeba59a625c1de34159c1851d62c Parents: d8bcb50 Author: aBabiichuk <[email protected]> Authored: Wed Nov 27 17:15:43 2013 +0200 Committer: aBabiichuk <[email protected]> Committed: Wed Nov 27 17:17:54 2013 +0200 ---------------------------------------------------------------------- .../controllers/main/service/manage_config_groups_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/0eb9fb9a/ambari-web/app/controllers/main/service/manage_config_groups_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/main/service/manage_config_groups_controller.js b/ambari-web/app/controllers/main/service/manage_config_groups_controller.js index 222dd87..e3b78cf 100644 --- a/ambari-web/app/controllers/main/service/manage_config_groups_controller.js +++ b/ambari-web/app/controllers/main/service/manage_config_groups_controller.js @@ -189,7 +189,7 @@ App.ManageConfigGroupsController = Em.Controller.extend({ header: Em.I18n.t('hosts.selectHostsDialog.title'), dialogMessage: Em.I18n.t('hosts.selectHostsDialog.message') }; - hostsManagement.launchHostsSelectionDialog(availableHosts, [], false, [], this.addHostsCallback.bind(this), popupDescription); + hostsManagement.launchHostsSelectionDialog(availableHosts, [], false, this.get('componentsForFilter'), this.addHostsCallback.bind(this), popupDescription); }, /**
