Fleet UI: Iterated copy change, fix tooltip link color (#36789)

This commit is contained in:
RachelElysia 2025-12-05 15:52:13 -05:00 committed by GitHub
parent aff1a6a26b
commit 0231c2832c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 3 deletions

View file

@ -25,6 +25,7 @@ const AndroidLatestVersionWithTooltip = ({
id: androidPlayStoreId,
})}
newTab
variant="tooltip-link"
/>
</span>
}

View file

@ -6,6 +6,7 @@ import InfoBanner from "components/InfoBanner";
import CustomLink from "components/CustomLink";
import { LEARN_MORE_ABOUT_BASE_LINK } from "utilities/constants";
import paths from "router/paths";
import { getSelfServiceTooltip } from "pages/SoftwarePage/helpers";
import { ISoftwareVppFormData } from "pages/SoftwarePage/components/forms/SoftwareVppForm/SoftwareVppForm";
import { IFleetMaintainedAppFormData } from "pages/SoftwarePage/SoftwareAddPage/SoftwareFleetMaintained/FleetMaintainedAppDetailsPage/FleetAppDetailsForm/FleetAppDetailsForm";
@ -158,9 +159,15 @@ const SoftwareOptionsSelector = ({
if (isPlatformAndroid) {
return (
<p>
Currently, Android apps can only be added as self-service and end user
can install them from <strong>Play Store</strong> in their work
profile{" "}
Currently, Android apps can only be added as self-service and the end
user can install them from the <strong>Play Store</strong> in their
work profile. Additionally, you can install it when hosts enroll on
the{" "}
<CustomLink
url={paths.CONTROLS_INSTALL_SOFTWARE("android")}
text="Setup experience"
/>{" "}
page.
</p>
);
}