diff --git a/awx/ui_next/src/api/models/Hosts.js b/awx/ui_next/src/api/models/Hosts.js index f9f5fe5542..ae90bf2826 100644 --- a/awx/ui_next/src/api/models/Hosts.js +++ b/awx/ui_next/src/api/models/Hosts.js @@ -1,5 +1,4 @@ import Base from '../Base'; -import { TintSlashIcon } from '@patternfly/react-icons'; class Hosts extends Base { constructor(http) { diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx index 4da7fdb023..22c2901358 100644 --- a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx +++ b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx @@ -186,6 +186,12 @@ function HostGroupsList({ i18n, location, match, host }) { onDisassociate={handleDisassociate} itemsToDisassociate={selected} modalTitle={i18n._(t`Disassociate group from host?`)} + modalNote={i18n._(t` + Note that you may still see the group in the list after + disassociating if the host is also a member of that group’s + children. This list shows all groups the host is associated + with directly and indirectly. + `)} />, ]} /> diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx index e049b1d596..04441c5070 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx @@ -184,6 +184,12 @@ function InventoryHostGroupsList({ i18n, location, match }) { onDisassociate={handleDisassociate} itemsToDisassociate={selected} modalTitle={i18n._(t`Disassociate group from host?`)} + modalNote={i18n._(t` + Note that you may still see the group in the list after + disassociating if the host is also a member of that group’s + children. This list shows all groups the host is associated + with directly and indirectly. + `)} />, ]} />