mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Fleet product: Simplify "Turned on MDM copy" (#35048)
Simplify copy on dashboard (MDM > Status card), Hosts page, and Host details page. Context: https://github.com/fleetdm/fleet/issues/34044#issuecomment-3473098231
This commit is contained in:
parent
9f174b7cdc
commit
5cb859d3bb
2 changed files with 9 additions and 19 deletions
|
|
@ -393,20 +393,15 @@ const HostsFilterBlock = ({
|
|||
automatic: (
|
||||
<span>
|
||||
MDM was turned on <br />
|
||||
automatically using Apple <br />
|
||||
Automated Device <br />
|
||||
Enrollment (DEP), <br />
|
||||
Windows Autopilot, or <br />
|
||||
Windows Azure AD Join. <br />
|
||||
Administrators can block <br />
|
||||
device users from turning
|
||||
<br /> MDM off.
|
||||
automatically. IT admins <br />
|
||||
can block end users <br />
|
||||
from turning MDM off.
|
||||
</span>
|
||||
),
|
||||
manual: (
|
||||
<span>
|
||||
MDM was turned on <br />
|
||||
manually. Device users <br />
|
||||
manually. End users <br />
|
||||
can turn MDM off.
|
||||
</span>
|
||||
),
|
||||
|
|
|
|||
|
|
@ -346,22 +346,17 @@ export const MDM_STATUS_TOOLTIP: Record<
|
|||
> = {
|
||||
"On (automatic)": (
|
||||
<span>
|
||||
MDM was turned on automatically using Apple Automated Device Enrollment
|
||||
(DEP), Windows Autopilot, or Windows Azure AD Join. Administrators can
|
||||
block end users from turning MDM off.
|
||||
MDM was turned on automatically. IT admins can block end users from
|
||||
turning MDM off.
|
||||
</span>
|
||||
),
|
||||
"On (manual)": (
|
||||
<span>
|
||||
MDM was turned on manually, by installing fleetd on macOS and Windows, or
|
||||
by installing enrollment profile on macOS. End user can turn MDM off.
|
||||
</span>
|
||||
<span>MDM was turned on manually. End users can turn MDM off.</span>
|
||||
),
|
||||
"On (personal)": (
|
||||
<span>
|
||||
End user turned on MDM on personal (BYOD) host, by signing in with Managed
|
||||
Apple Account on iPhone/iPad, or by enrolling Android via enrollment link
|
||||
or by signing in with Google account. End user can turn MDM off.
|
||||
MDM was turned on by signing in with Managed Apple Account on iPhone/iPad,
|
||||
or by creating a work profile on Android. End users can turn MDM off.
|
||||
</span>
|
||||
),
|
||||
"On (company-owned)": null,
|
||||
|
|
|
|||
Loading…
Reference in a new issue