diff --git a/src/components/ClientInfoCard.tsx b/src/components/ClientInfoCard.tsx index 4815c85fb..9962c8f93 100644 --- a/src/components/ClientInfoCard.tsx +++ b/src/components/ClientInfoCard.tsx @@ -61,14 +61,14 @@ export default function SiteInfoCard({}: ClientInfoCardProps) { {t("status")} {client.online ? ( -
+
- {t("online")} + {t("connected")}
) : ( -
+
- {t("offline")} + {t("disconnected")}
)} diff --git a/src/components/ExitNodeInfoCard.tsx b/src/components/ExitNodeInfoCard.tsx index 5f50d892a..46791ec4f 100644 --- a/src/components/ExitNodeInfoCard.tsx +++ b/src/components/ExitNodeInfoCard.tsx @@ -26,12 +26,12 @@ export default function ExitNodeInfoCard({}: ExitNodeInfoCardProps) { {t("status")} {remoteExitNode.online ? ( -
+
{t("online")}
) : ( -
+
{t("offline")}
diff --git a/src/components/ExitNodesTable.tsx b/src/components/ExitNodesTable.tsx index 73e96a96c..27b44706f 100644 --- a/src/components/ExitNodesTable.tsx +++ b/src/components/ExitNodesTable.tsx @@ -140,14 +140,14 @@ export default function ExitNodesTable({ const originalRow = row.original; if (originalRow.online) { return ( - +
{t("online")}
); } else { return ( - +
{t("offline")}
diff --git a/src/components/HealthChecksTable.tsx b/src/components/HealthChecksTable.tsx index 68976bf40..2e85d55bd 100644 --- a/src/components/HealthChecksTable.tsx +++ b/src/components/HealthChecksTable.tsx @@ -519,21 +519,21 @@ export default function HealthChecksTable({ const health = row.original.hcHealth; if (health === "healthy") { return ( - +
{t("standaloneHcHealthStateHealthy")} ); } else if (health === "unhealthy") { return ( - +
{t("standaloneHcHealthStateUnhealthy")} ); } else { return ( - +
{t("standaloneHcHealthStateUnknown")} diff --git a/src/components/MachineClientsTable.tsx b/src/components/MachineClientsTable.tsx index 4ef22c83d..a70e6d8e5 100644 --- a/src/components/MachineClientsTable.tsx +++ b/src/components/MachineClientsTable.tsx @@ -285,14 +285,14 @@ export default function MachineClientsTable({ const originalRow = row.original; if (originalRow.online) { return ( - +
{t("connected")}
); } else { return ( - +
{t("disconnected")}
diff --git a/src/components/PendingSitesTable.tsx b/src/components/PendingSitesTable.tsx index d32aee95e..8cdfc424d 100644 --- a/src/components/PendingSitesTable.tsx +++ b/src/components/PendingSitesTable.tsx @@ -228,14 +228,14 @@ export default function PendingSitesTable({ ) { if (originalRow.online) { return ( - +
{t("online")}
); } else { return ( - +
{t("offline")}
diff --git a/src/components/ResourceInfoBox.tsx b/src/components/ResourceInfoBox.tsx index b53558012..d66912d14 100644 --- a/src/components/ResourceInfoBox.tsx +++ b/src/components/ResourceInfoBox.tsx @@ -89,12 +89,12 @@ export default function ResourceInfoBox({}: ResourceInfoBoxType) { Socket {isAvailable ? ( - +
Online
) : ( - +
Offline
diff --git a/src/components/SiteInfoCard.tsx b/src/components/SiteInfoCard.tsx index 91a924e58..4f366731e 100644 --- a/src/components/SiteInfoCard.tsx +++ b/src/components/SiteInfoCard.tsx @@ -34,12 +34,12 @@ export default function SiteInfoCard({}: SiteInfoCardProps) { {t("status")} {site.online ? ( -
+
{t("online")}
) : ( -
+
{t("offline")}
diff --git a/src/components/SitesTable.tsx b/src/components/SitesTable.tsx index c29314874..1e50b543f 100644 --- a/src/components/SitesTable.tsx +++ b/src/components/SitesTable.tsx @@ -226,14 +226,14 @@ export default function SitesTable({ ) { if (originalRow.online) { return ( - +
{t("online")}
); } else { return ( - +
{t("offline")}
diff --git a/src/components/UserDevicesTable.tsx b/src/components/UserDevicesTable.tsx index 0a130cc16..1908f1100 100644 --- a/src/components/UserDevicesTable.tsx +++ b/src/components/UserDevicesTable.tsx @@ -436,14 +436,14 @@ export default function UserDevicesTable({ const originalRow = row.original; if (originalRow.online) { return ( - +
{t("connected")}
); } else { return ( - +
{t("disconnected")}