From 2d0cac7c4d5bac444bf1fba9fefef908aad28c2a Mon Sep 17 00:00:00 2001 From: mabashian Date: Tue, 22 Aug 2017 15:25:15 -0400 Subject: [PATCH] Remove groups column from smart inventory hosts list --- .../inventories/smart-inventory/smart-inventory-hosts.route.js | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/ui/client/src/inventories-hosts/inventories/smart-inventory/smart-inventory-hosts.route.js b/awx/ui/client/src/inventories-hosts/inventories/smart-inventory/smart-inventory-hosts.route.js index 753228efee..31794850f5 100644 --- a/awx/ui/client/src/inventories-hosts/inventories/smart-inventory/smart-inventory-hosts.route.js +++ b/awx/ui/client/src/inventories-hosts/inventories/smart-inventory/smart-inventory-hosts.route.js @@ -34,6 +34,7 @@ export default { let list = _.cloneDeep(RelatedHostsListDefinition); list.basePath = GetBasePath('inventory') + $stateParams.smartinventory_id + '/hosts'; delete list.actions.create; + delete list.fields.groups; return list; }], Dataset: ['ListDefinition', 'QuerySet', '$stateParams', 'GetBasePath', '$interpolate', '$rootScope',