From 54f308a61b783e27fe314724fe2a82c21aadc9f0 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Wed, 14 Oct 2015 16:02:09 -0400 Subject: [PATCH] Revert "change list separator for adhoc host patterns" This reverts commit 7200ad3a87b642d7f947f9eaa110b8c90767f34f. --- awx/ui/client/src/controllers/Inventories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/controllers/Inventories.js b/awx/ui/client/src/controllers/Inventories.js index 9decf20065..187a99d10e 100644 --- a/awx/ui/client/src/controllers/Inventories.js +++ b/awx/ui/client/src/controllers/Inventories.js @@ -879,7 +879,7 @@ export function InventoriesManage ($log, $scope, $rootScope, $location, allSelectedItems = allSelectedItems.concat($scope.hostsSelectedItems); } if (allSelectedItems) { - host_patterns = _.pluck(allSelectedItems, "name").join(", "); + host_patterns = _.pluck(allSelectedItems, "name").join(":"); } } $rootScope.hostPatterns = host_patterns;