From a5857cf6ef17af5fe19ac0bf9ee9ccffc908bdbe Mon Sep 17 00:00:00 2001 From: Marko Lisica <83164494+marko-lisica@users.noreply.github.com> Date: Mon, 9 Jun 2025 14:10:28 +0200 Subject: [PATCH] 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 --- .../OSSettings/cards/DiskEncryption/DiskEncryption.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/frontend/pages/ManageControlsPage/OSSettings/cards/DiskEncryption/DiskEncryption.tsx b/frontend/pages/ManageControlsPage/OSSettings/cards/DiskEncryption/DiskEncryption.tsx index cb0b57b357..a128b377f9 100644 --- a/frontend/pages/ManageControlsPage/OSSettings/cards/DiskEncryption/DiskEncryption.tsx +++ b/frontend/pages/ManageControlsPage/OSSettings/cards/DiskEncryption/DiskEncryption.tsx @@ -149,12 +149,9 @@ const DiskEncryption = ({ : ["Apple", "FileVault"]; return ( <> - {AppleOrWindows} MDM must be turned on in{" "} - - Settings > Integrations >{" "} - Mobile Device Management (MDM) - {" "} - to enforce disk encryption via {DEMethod}. + {AppleOrWindows} MDM must be turned on in Settings >{" "} + Integrations > Mobile Device Management (MDM) to + enforce disk encryption via {DEMethod}. ); };