mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Update Hosts page (#15465)
- Use "hosts" instead of "devices" in copy on **Hosts** page
This commit is contained in:
parent
f19dc8abe0
commit
d0cfc65786
1 changed files with 4 additions and 4 deletions
|
|
@ -1367,9 +1367,9 @@ const ManageHostsPage = ({
|
|||
const emptyState = () => {
|
||||
const emptyHosts: IEmptyTableProps = {
|
||||
graphicName: "empty-hosts",
|
||||
header: "Devices will show up here once they’re added to Fleet.",
|
||||
header: "Hosts will show up here once they’re added to Fleet.",
|
||||
info:
|
||||
"Expecting to see devices? Try again in a few seconds as the system catches up.",
|
||||
"Expecting to see hosts? Try again in a few seconds as the system catches up.",
|
||||
};
|
||||
if (includesFilterQueryParam) {
|
||||
delete emptyHosts.graphicName;
|
||||
|
|
@ -1377,8 +1377,8 @@ const ManageHostsPage = ({
|
|||
emptyHosts.info =
|
||||
"Expecting to see new hosts? Try again in a few seconds as the system catches up.";
|
||||
} else if (canEnrollHosts) {
|
||||
emptyHosts.header = "Add your devices to Fleet";
|
||||
emptyHosts.info = "Generate an installer to add your own devices.";
|
||||
emptyHosts.header = "Add your hosts to Fleet";
|
||||
emptyHosts.info = "Generate an installer to add your own hosts.";
|
||||
emptyHosts.primaryButton = (
|
||||
<Button variant="brand" onClick={toggleAddHostsModal} type="button">
|
||||
Add hosts
|
||||
|
|
|
|||
Loading…
Reference in a new issue