From 443ec3c622e76ac566ead8fe7c344614cbda03dd Mon Sep 17 00:00:00 2001 From: Jacob Shandling <61553566+jacobshandling@users.noreply.github.com> Date: Fri, 16 Feb 2024 14:22:01 -0800 Subject: [PATCH] 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 --- .../SoftwareOSDetailsPage/SoftwareOSDetailsPage.tsx | 2 +- .../SoftwareTitleDetailsPage/SoftwareTitleDetailsPage.tsx | 2 +- .../SoftwareVersionDetailsPage/SoftwareVersionDetailsPage.tsx | 4 ++-- .../SoftwareVulnerabilityDetailsPage.tsx | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/pages/SoftwarePage/SoftwareOSDetailsPage/SoftwareOSDetailsPage.tsx b/frontend/pages/SoftwarePage/SoftwareOSDetailsPage/SoftwareOSDetailsPage.tsx index 97d282420e..be89e32bf5 100644 --- a/frontend/pages/SoftwarePage/SoftwareOSDetailsPage/SoftwareOSDetailsPage.tsx +++ b/frontend/pages/SoftwarePage/SoftwareOSDetailsPage/SoftwareOSDetailsPage.tsx @@ -173,7 +173,7 @@ const SoftwareOSDetailsPage = ({ {osVersionDetails.hosts_count === 0 ? ( diff --git a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareTitleDetailsPage.tsx b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareTitleDetailsPage.tsx index 8aab06e133..ff62336dc8 100644 --- a/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareTitleDetailsPage.tsx +++ b/frontend/pages/SoftwarePage/SoftwareTitleDetailsPage/SoftwareTitleDetailsPage.tsx @@ -120,7 +120,7 @@ const SoftwareTitleDetailsPage = ({ {softwareTitle.hosts_count === 0 ? ( diff --git a/frontend/pages/SoftwarePage/SoftwareVersionDetailsPage/SoftwareVersionDetailsPage.tsx b/frontend/pages/SoftwarePage/SoftwareVersionDetailsPage/SoftwareVersionDetailsPage.tsx index b2f59bf965..60d4a81ffe 100644 --- a/frontend/pages/SoftwarePage/SoftwareVersionDetailsPage/SoftwareVersionDetailsPage.tsx +++ b/frontend/pages/SoftwarePage/SoftwareVersionDetailsPage/SoftwareVersionDetailsPage.tsx @@ -141,9 +141,9 @@ const SoftwareVersionDetailsPage = ({ {softwareVersion.hosts_count === 0 ? ( ) : ( ); }