mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
fix condition to show host actions in details page (#19769)
unreleased bug caused by a bad merge conflict resolution.
This commit is contained in:
parent
bb6ee46987
commit
417b2ce9d8
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue