Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const SoftwareName = ({ name }: ISoftwareNameProps) => {
interface IStatusDisplayOption {
displayName: string;
iconName: "success" | "pending-outline" | "error";
tooltip: string;
tooltip: React.ReactNode;
}

const STATUS_DISPLAY_OPTIONS: Record<
Expand All @@ -86,7 +86,12 @@ const STATUS_DISPLAY_OPTIONS: Record<
installed: {
displayName: "Installed",
iconName: "success",
tooltip: "Fleet installed software on these hosts.",
tooltip: (
<>
Fleet installed software on these hosts. Currently, if the software is
uninstalled, the &quot;Installed&quot; status won&apos;t be updated.
</>
),
},
pending: {
displayName: "Pending",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export const INSTALL_STATUS_DISPLAY_OPTIONS: Record<
displayText: "Installed",
tooltip: ({ lastInstalledAt: lastInstall }) => (
<>
Fleet installed software on this host
{dateAgo(lastInstall as string)}). Currently, if the software is
deleted, the “Installed” status wont be updated.
Fleet installed software on this host {dateAgo(lastInstall as string)}).
Currently, if the software is uninstalled, the &quot;Installed&quot;
status won&apos;t be updated.
</>
),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ const STATUS_CONFIG: Record<SoftwareInstallStatus, IStatusDisplayConfig> = {
tooltip: ({ lastInstalledAt }) => (
<>
Software installed successfully ({dateAgo(lastInstalledAt as string)}).
Currently, if the software is uninstalled, the &quot;Installed&quot;
status won&apos;t be updated.
</>
),
},
Expand Down