Not-working link during adding a SAML Identity provider (#23093)

This commit is contained in:
kaustubh-rh 2023-09-08 18:42:15 +05:30 committed by GitHub
parent c18be7c7d9
commit bc551f335a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}
</>
);
};