From 78ce54bc4abfdca8e3b9c4a9b27775bf27ad3819 Mon Sep 17 00:00:00 2001 From: nixocio Date: Thu, 29 Oct 2020 15:19:52 -0400 Subject: [PATCH] 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 --- .../src/screens/Inventory/InventoryDetail/InventoryDetail.jsx | 1 - .../screens/Inventory/InventoryDetail/InventoryDetail.test.jsx | 1 - 2 files changed, 2 deletions(-) diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx index dc70c15f67..fc17602df1 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx @@ -70,7 +70,6 @@ function InventoryDetail({ inventory, i18n }) { value={inventory.name} dataCy="inventory-detail-name" /> - ', () => { }); 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"]');