mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Update no-hosts empty states copy (#16943)
Simple copy updates per https://github.com/fleetdm/fleet/pull/16908#discussion_r1493009227 Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
5ec1c2c4bf
commit
443ec3c622
4 changed files with 6 additions and 6 deletions
|
|
@ -173,7 +173,7 @@ const SoftwareOSDetailsPage = ({
|
|||
{osVersionDetails.hosts_count === 0 ? (
|
||||
<DetailsNoHosts
|
||||
header="OS not detected"
|
||||
details={`No host ${teamIdForApi ? "on this team " : ""}has ${
|
||||
details={`No hosts ${teamIdForApi ? "on this team " : ""}have ${
|
||||
osVersionDetails.name
|
||||
} installed.`}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ const SoftwareTitleDetailsPage = ({
|
|||
{softwareTitle.hosts_count === 0 ? (
|
||||
<DetailsNoHosts
|
||||
header="Software not detected"
|
||||
details={`No host ${teamIdForApi ? "on this team " : ""}has ${
|
||||
details={`No hosts ${teamIdForApi ? "on this team " : ""}have ${
|
||||
softwareTitle.name
|
||||
} installed.`}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -141,9 +141,9 @@ const SoftwareVersionDetailsPage = ({
|
|||
{softwareVersion.hosts_count === 0 ? (
|
||||
<DetailsNoHosts
|
||||
header="Software not detected"
|
||||
details={`No host ${
|
||||
details={`No hosts ${
|
||||
teamIdForApi ? "on this team " : ""
|
||||
}has this software installed.`}
|
||||
}have this software installed.`}
|
||||
/>
|
||||
) : (
|
||||
<Card
|
||||
|
|
|
|||
|
|
@ -98,9 +98,9 @@ const SoftwareVulnerabilityDetailsPage = ({
|
|||
return (
|
||||
<DetailsNoHosts
|
||||
header="Vulnerability not detected"
|
||||
details={`No host ${
|
||||
details={`No hosts ${
|
||||
teamIdForApi ? "on this team " : ""
|
||||
}is affected by ${vuln.cve}.`}
|
||||
}are affected by ${vuln.cve}.`}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue