diff --git a/frontend/pages/hosts/details/cards/Software/HostSoftware.tsx b/frontend/pages/hosts/details/cards/Software/HostSoftware.tsx index a963cf0a83..b8fcd619d5 100644 --- a/frontend/pages/hosts/details/cards/Software/HostSoftware.tsx +++ b/frontend/pages/hosts/details/cards/Software/HostSoftware.tsx @@ -343,7 +343,9 @@ const HostSoftware = ({ return (
- + {!isAndroid(platform) && ( + + )} {renderHostSoftware()}
); diff --git a/frontend/pages/hosts/details/cards/Software/HostSoftwareTable/HostSoftwareTable.tests.tsx b/frontend/pages/hosts/details/cards/Software/HostSoftwareTable/HostSoftwareTable.tests.tsx index ce8e1fea08..0caf5f22af 100644 --- a/frontend/pages/hosts/details/cards/Software/HostSoftwareTable/HostSoftwareTable.tests.tsx +++ b/frontend/pages/hosts/details/cards/Software/HostSoftwareTable/HostSoftwareTable.tests.tsx @@ -54,6 +54,9 @@ describe("HostSoftwareTable", () => { screen.getByText(/software is not supported for this host/i) ).toBeInTheDocument(); expect(screen.getByText(/let us know/i)).toBeInTheDocument(); + expect( + screen.queryByText(/Software installed on this host/i) + ).not.toBeInTheDocument(); }); it("renders custom filter button when filters are applied", () => {