Fleet UI: Update host details > software > status "Installed" tooltip (#21052)

This commit is contained in:
RachelElysia 2024-08-05 16:54:16 -04:00 committed by GitHub
parent 5730c1c3c8
commit afc292666c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View file

@ -348,7 +348,7 @@ const SoftwarePage = ({ children, router, location }: ISoftwarePageProps) => {
const renderHeaderDescription = () => {
return (
<p>
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"}.
</p>
);

View file

@ -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 wont be updated.
</>
),
},