Update tooltip to exclude link (#28559)

This isn't supposed to be link. We use bold text to reference UI
elements, but it's not expected to have links in tooltip.

---------

Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
This commit is contained in:
Marko Lisica 2025-06-09 14:10:28 +02:00 committed by GitHub
parent 6e764edfec
commit a5857cf6ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -149,12 +149,9 @@ const DiskEncryption = ({
: ["Apple", "FileVault"];
return (
<>
{AppleOrWindows} MDM must be turned on in{" "}
<a href="/settings/integrations/mdm">
<b>Settings</b> &gt; <b>Integrations</b> &gt;{" "}
<b>Mobile Device Management (MDM)</b>
</a>{" "}
to enforce disk encryption via {DEMethod}.
{AppleOrWindows} MDM must be turned on in <b>Settings</b> &gt;{" "}
<b>Integrations</b> &gt; <b>Mobile Device Management (MDM)</b> to
enforce disk encryption via {DEMethod}.
</>
);
};