diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx index 5e644cde9d..7e3feaec33 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx @@ -39,6 +39,10 @@ const ListGroup = styled.div` display: inline-block; `; +const OrgLabel = styled.b` + margin-right: 20px; +`; + function InventoryListItem({ inventory, isSelected, @@ -114,6 +118,7 @@ function InventoryListItem({ : i18n._(t`Inventory`)} , + {i18n._(t`Organization`)} diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx index 7507f37cb1..b23878a651 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx @@ -68,7 +68,7 @@ describe('', () => { .find('DataListCell') .at(3) .text() - ).toBe('Default'); + ).toBe('OrganizationDefault'); expect( wrapper .find('DataListCell')