mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fleet UI: Iterated copy change, fix tooltip link color (#36789)
This commit is contained in:
parent
aff1a6a26b
commit
0231c2832c
2 changed files with 11 additions and 3 deletions
|
|
@ -25,6 +25,7 @@ const AndroidLatestVersionWithTooltip = ({
|
|||
id: androidPlayStoreId,
|
||||
})}
|
||||
newTab
|
||||
variant="tooltip-link"
|
||||
/>
|
||||
</span>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue