From 18cb53cd2694452b24fe9c8598b1f9ce9c51fa32 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Wed, 26 Nov 2014 15:49:50 -0500 Subject: [PATCH] Custom inventory : Edit fixed issue with list of custom inventories not updating correctly when a user saves an inv script they were editing --- awx/ui/static/js/helpers/CustomInventory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/CustomInventory.js b/awx/ui/static/js/helpers/CustomInventory.js index 93cd236e2b..2e3b6b01a9 100644 --- a/awx/ui/static/js/helpers/CustomInventory.js +++ b/awx/ui/static/js/helpers/CustomInventory.js @@ -297,7 +297,7 @@ function($compile, CustomInventoryList, Rest, Wait, GenerateList, CustomInventor SearchInit({ scope: scope, - set: 'custum_inventories', + set: 'custom_inventories', list: list, url: url }); @@ -308,6 +308,7 @@ function($compile, CustomInventoryList, Rest, Wait, GenerateList, CustomInventor }); scope.search(list.iterator); + Wait('stop'); })