mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fleet UI: Add "Learn more" link to End-user Authentication docs on SSO settings page (#42814)
Resolves #40164 Manually verified: <img width="785" height="187" alt="image" src="https://github.com/user-attachments/assets/c2b91fd4-3592-4760-8241-c33a89e162c0" /> Adds a "Learn more" link to the [End-user Authentication](https://fleetdm.com/guides/setup-experience#end-user-authentication) documentation on the `/settings/integrations/sso/end-users` page, making it easier for customers to reference docs while configuring SSO settings. - **`EndUserAuthSection.tsx`**: Appended a `Learn more` anchor (opens in new tab) after the description text in the end-user auth settings card. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added a "Learn more" link in the end user authentication setup section, providing quick access to comprehensive setup guidance and documentation. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: getvictor <2685025+getvictor@users.noreply.github.com>
This commit is contained in:
parent
082044e7a0
commit
511e042427
2 changed files with 8 additions and 1 deletions
1
changes/42814-sso-learn-more-link
Normal file
1
changes/42814-sso-learn-more-link
Normal file
|
|
@ -0,0 +1 @@
|
|||
- Added "Learn more" link on End User Authentication section.
|
||||
|
|
@ -17,6 +17,7 @@ import Button from "components/buttons/Button/Button";
|
|||
import TooltipWrapper from "components/TooltipWrapper";
|
||||
import GitOpsModeTooltipWrapper from "components/GitOpsModeTooltipWrapper";
|
||||
import PremiumFeatureMessage from "components/PremiumFeatureMessage";
|
||||
import CustomLink from "components/CustomLink";
|
||||
|
||||
import {
|
||||
IFormDataIdp,
|
||||
|
|
@ -141,7 +142,12 @@ const EndUserAuthSection = ({
|
|||
Controls > Setup experience > End user authentication
|
||||
</strong>
|
||||
, end users will be required to authenticate when they first set up
|
||||
their host.
|
||||
their host.{" "}
|
||||
<CustomLink
|
||||
text="Learn more"
|
||||
url="https://fleetdm.com/guides/setup-experience#end-user-authentication"
|
||||
newTab
|
||||
/>
|
||||
</p>
|
||||
<div
|
||||
className={`form ${
|
||||
|
|
|
|||
Loading…
Reference in a new issue