diff --git a/awx/ui/client/src/inventories-hosts/inventories/related/groups/related/nested-groups/main.js b/awx/ui/client/src/inventories-hosts/inventories/related/groups/related/nested-groups/main.js index 4450f4b39a..445854d120 100644 --- a/awx/ui/client/src/inventories-hosts/inventories/related/groups/related/nested-groups/main.js +++ b/awx/ui/client/src/inventories-hosts/inventories/related/groups/related/nested-groups/main.js @@ -12,6 +12,6 @@ import NestedGroupForm from './group-nested-groups.form'; export default angular.module('nestedGroups', []) .factory('NestedGroupForm', NestedGroupForm) - .value('NestedGroupListDefinition', nestedGroupListDefinition) + .factory('NestedGroupListDefinition', nestedGroupListDefinition) .controller('NestedGroupsListController', controller) .controller('NestedGroupsAddController', addController); diff --git a/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.controller.js b/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.controller.js index 767b544f98..414f8262f3 100644 --- a/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.controller.js +++ b/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.controller.js @@ -30,6 +30,10 @@ list.multiSelect = true; list.fields.name.ngClick = 'linkoutHost(associate_host)'; list.trackBy = 'associate_host.id'; + list.multiSelectPreview = { + selectedRows: 'selectedItems', + availableRows: 'associate_hosts' + }; delete list.fields.toggleHost; delete list.fields.active_failures; delete list.fields.inventory; diff --git a/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.partial.html b/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.partial.html index b510c6b89e..64c24bf804 100644 --- a/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.partial.html +++ b/awx/ui/client/src/inventories-hosts/shared/associate-hosts/associate-hosts.partial.html @@ -3,7 +3,7 @@