From 7ff5d6f300a96fe4147e9c823e6c8d4148353d16 Mon Sep 17 00:00:00 2001 From: chouseknecht Date: Tue, 30 Jul 2013 11:13:35 -0400 Subject: [PATCH] AC-308 Fixed the Remove Host from Group dialog message to be more explicit regarding how Remove works. --- awx/ui/static/js/helpers/Hosts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/Hosts.js b/awx/ui/static/js/helpers/Hosts.js index 65dfb20575..dce611fe6c 100644 --- a/awx/ui/static/js/helpers/Hosts.js +++ b/awx/ui/static/js/helpers/Hosts.js @@ -385,7 +385,8 @@ angular.module('HostsHelper', [ 'RestServices', 'Utilities', 'ListGenerator', 'H } else { scope['promptHeader'] = 'Remove Host from Group'; - scope['promptBody'] = 'Are you sure you want to remove ' + host_name + ' from the group?'; + scope['promptBody'] = 'Are you sure you want to remove ' + host_name + ' from the group? ' + + host_name + ' will continue to be part of the inventory under All Hosts.'; scope['promptActionBtnClass'] = 'btn-success'; }