Skip to content

Commit

Permalink
Not-working link during adding a SAML Identity provider (keycloak#23093)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaustubh-rh authored Sep 8, 2023
1 parent c18be7c commit bc551f3
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions js/apps/admin-ui/src/identity-providers/add/SamlGeneralSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,25 @@ export const SamlGeneralSettings = ({
data-testid="displayName"
/>
<DisplayOrder />
<FormGroup
label={t("endpoints")}
fieldId="endpoints"
labelIcon={
<HelpItem
helpText={t("identity-providers-help:alias")}
fieldLabelId="identity-providers:alias"
{isAliasReadonly ? (
<FormGroup
label={t("endpoints")}
fieldId="endpoints"
labelIcon={
<HelpItem
helpText={t("identity-providers-help:alias")}
fieldLabelId="identity-providers:alias"
/>
}
className="keycloak__identity-providers__saml_link"
>
<FormattedLink
title={t("samlEndpointsLabel")}
href={`${environment.authUrl}/realms/${realm}/broker/${alias}/endpoint/descriptor`}
isInline
/>
}
className="keycloak__identity-providers__saml_link"
>
<FormattedLink
title={t("samlEndpointsLabel")}
href={`${environment.authUrl}/realms/${realm}/broker/${alias}/endpoint/descriptor`}
isInline
/>
</FormGroup>
</FormGroup>
) : null}
</>
);
};

0 comments on commit bc551f3

Please sign in to comment.