mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
Remove activity from inventory details page
Remove activity from inventory details page This information is already present on the `Complete jobs` tab. See: https://github.com/ansible/awx/issues/8467
This commit is contained in:
parent
1a4f2f43b7
commit
78ce54bc4a
@ -70,7 +70,6 @@ function InventoryDetail({ inventory, i18n }) {
|
||||
value={inventory.name}
|
||||
dataCy="inventory-detail-name"
|
||||
/>
|
||||
<Detail label={i18n._(t`Activity`)} value="Coming soon" />
|
||||
<Detail label={i18n._(t`Description`)} value={inventory.description} />
|
||||
<Detail label={i18n._(t`Type`)} value={i18n._(t`Inventory`)} />
|
||||
<Detail
|
||||
|
||||
@ -85,7 +85,6 @@ describe('<InventoryDetail />', () => {
|
||||
});
|
||||
wrapper.update();
|
||||
expectDetailToMatch(wrapper, 'Name', mockInventory.name);
|
||||
expectDetailToMatch(wrapper, 'Activity', 'Coming soon');
|
||||
expectDetailToMatch(wrapper, 'Description', mockInventory.description);
|
||||
expectDetailToMatch(wrapper, 'Type', 'Inventory');
|
||||
const org = wrapper.find('Detail[label="Organization"]');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user