From afc292666c1703f4e0c6a5c4be7a44b98aeb17d1 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:54:16 -0400 Subject: [PATCH] Fleet UI: Update host details > software > status "Installed" tooltip (#21052) --- frontend/pages/SoftwarePage/SoftwarePage.tsx | 2 +- .../cards/Software/InstallStatusCell/InstallStatusCell.tsx | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/pages/SoftwarePage/SoftwarePage.tsx b/frontend/pages/SoftwarePage/SoftwarePage.tsx index 1cf063cc2d..34aeb03cc5 100644 --- a/frontend/pages/SoftwarePage/SoftwarePage.tsx +++ b/frontend/pages/SoftwarePage/SoftwarePage.tsx @@ -348,7 +348,7 @@ const SoftwarePage = ({ children, router, location }: ISoftwarePageProps) => { const renderHeaderDescription = () => { return (

- Manage software and search for installed software, OS and + Manage software and search for installed software, OS, and vulnerabilities {isAllTeamsSelected ? "for all hosts" : "on this team"}.

); diff --git a/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx b/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx index 38a3a42df3..7e8ea90bc1 100644 --- a/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx +++ b/frontend/pages/hosts/details/cards/Software/InstallStatusCell/InstallStatusCell.tsx @@ -38,8 +38,9 @@ export const INSTALL_STATUS_DISPLAY_OPTIONS: Record< displayText: "Installed", tooltip: ({ lastInstalledAt: lastInstall }) => ( <> - Fleet installed software on these hosts. ( - {dateAgo(lastInstall as string)}) + Fleet installed software on this host + {dateAgo(lastInstall as string)}). Currently, if the software is + deleted, the “Installed” status won’t be updated. ), },