From 453df905ec37ba1bff63f385d0f7e0143bb8038d Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Fri, 16 Dec 2016 13:23:51 -0500 Subject: [PATCH] Fixed bug where organization inventory/project lists were not being rendered --- .../organizations/linkout/organizations-linkout.route.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js b/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js index d8efd0c813..64ad9dd8e7 100644 --- a/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js +++ b/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js @@ -156,7 +156,7 @@ export default [{ url: '/:organization_id/inventories', searchPrefix: 'inventory', views: { - 'form@': { + 'form': { controller: OrganizationsInventories, templateProvider: function(OrgInventoryList, generateList) { let html = generateList.build({ @@ -202,7 +202,7 @@ export default [{ url: '/:organization_id/projects', searchPrefix: 'project', views: { - 'form@': { + 'form': { controller: OrganizationsProjects, templateProvider: function(OrgProjectList, generateList) { let html = generateList.build({ @@ -231,8 +231,8 @@ export default [{ features: ['FeaturesService', function(FeaturesService) { return FeaturesService.get(); }], - OrgProjectList: ['ProjectList', 'GetBasePath', '$stateParams', function(InventoryList, GetBasePath, $stateParams) { - let list = _.cloneDeep(InventoryList); + OrgProjectList: ['ProjectList', 'GetBasePath', '$stateParams', function(ProjectList, GetBasePath, $stateParams) { + let list = _.cloneDeep(ProjectList); delete list.actions; // @issue Why is the delete action unavailable in this view? delete list.fieldActions.delete;