From 417b2ce9d8bcc1def31bd807f325bce953967d17 Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Fri, 14 Jun 2024 16:49:36 -0300 Subject: [PATCH] fix condition to show host actions in details page (#19769) unreleased bug caused by a bad merge conflict resolution. --- .../pages/hosts/details/HostDetailsPage/HostDetailsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/hosts/details/HostDetailsPage/HostDetailsPage.tsx b/frontend/pages/hosts/details/HostDetailsPage/HostDetailsPage.tsx index f4446fbe17..28ec8c5539 100644 --- a/frontend/pages/hosts/details/HostDetailsPage/HostDetailsPage.tsx +++ b/frontend/pages/hosts/details/HostDetailsPage/HostDetailsPage.tsx @@ -680,7 +680,7 @@ const HostDetailsPage = ({ hostMdmDeviceStatus={hostMdmDeviceStatus} hostMdmEnrollmentStatus={host.mdm.enrollment_status} doesStoreEncryptionKey={host.mdm.encryption_key_available} - isConnectedToFleetMdm={mdm?.connected_to_fleet} + isConnectedToFleetMdm={host.mdm?.connected_to_fleet} hostScriptsEnabled={host.scripts_enabled} /> );