From 2e177598c2494e60bfde834eb7d5a604b87cef11 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Thu, 6 Apr 2017 16:33:12 -0400 Subject: [PATCH] Fixed add inventory form --- .../client/src/inventories/add/inventory-add.controller.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/client/src/inventories/add/inventory-add.controller.js b/awx/ui/client/src/inventories/add/inventory-add.controller.js index 02e608af6c..19da6885dd 100644 --- a/awx/ui/client/src/inventories/add/inventory-add.controller.js +++ b/awx/ui/client/src/inventories/add/inventory-add.controller.js @@ -11,7 +11,7 @@ */ function InventoriesAdd($scope, $location, - GenerateForm, InventoryForm, rbacUiControlService, Rest, Alert, ProcessErrors, + GenerateForm, InventoriesForm, rbacUiControlService, Rest, Alert, ProcessErrors, ClearScope, GetBasePath, ParseTypeChange, Wait, ToJSON, $state) { @@ -34,7 +34,7 @@ function InventoriesAdd($scope, $location, // Inject dynamic view var defaultUrl = GetBasePath('inventory'), - form = InventoryForm; + form = InventoriesForm; init(); @@ -98,7 +98,7 @@ function InventoriesAdd($scope, $location, } export default ['$scope', '$location', - 'GenerateForm', 'InventoryForm', 'rbacUiControlService', 'Rest', 'Alert', + 'GenerateForm', 'InventoriesForm', 'rbacUiControlService', 'Rest', 'Alert', 'ProcessErrors', 'ClearScope', 'GetBasePath', 'ParseTypeChange', 'Wait', 'ToJSON', '$state', InventoriesAdd ];