diff --git a/awx/ui/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js b/awx/ui/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js index 545862ee62..5c0a34796a 100644 --- a/awx/ui/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js +++ b/awx/ui/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js @@ -13,7 +13,7 @@ function InventoryGroupEdit({ inventoryGroup }) { const handleSubmit = async (values) => { try { await GroupsAPI.update(groupId, values); - history.push(`/inventories/inventory/${id}/groups/${groupId}`); + history.push(`/inventories/inventory/${id}/groups/${groupId}/details`); } catch (err) { setError(err); }