mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fleet UI: Update host details > software > status "Installed" tooltip (#21052)
This commit is contained in:
parent
5730c1c3c8
commit
afc292666c
2 changed files with 4 additions and 3 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
</>
|
||||
),
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue