From 1969559ee1214893ccce83efbb3abfa74928f326 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Mon, 12 Oct 2015 19:54:59 -0400 Subject: [PATCH] change list separator for adhoc host patterns --- 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 187a99d10e..9decf20065 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;