change list separator for adhoc host patterns

This commit is contained in:
John Mitchell 2015-10-12 19:54:59 -04:00
parent fcb14f27fa
commit 1969559ee1

View File

@ -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;