parent
5cd0d51fa6
commit
c86254972b
1 changed files with 46 additions and 40 deletions
|
@ -26,6 +26,8 @@ export const LoginSettings = ({
|
|||
const idpInitiatedSsoUrlName: string = watch(
|
||||
"attributes.saml_idp_initiated_sso_url_name"
|
||||
);
|
||||
|
||||
const standardFlowEnabled = watch("standardFlowEnabled");
|
||||
return (
|
||||
<>
|
||||
<FormGroup
|
||||
|
@ -62,6 +64,8 @@ export const LoginSettings = ({
|
|||
{...rest}
|
||||
/>
|
||||
</FormGroup>
|
||||
{standardFlowEnabled && (
|
||||
<>
|
||||
<FormGroup
|
||||
label={t("validRedirectUri")}
|
||||
fieldId="kc-redirect"
|
||||
|
@ -100,7 +104,9 @@ export const LoginSettings = ({
|
|||
stringify
|
||||
{...rest}
|
||||
/>
|
||||
</FormGroup>
|
||||
</FormGroup>{" "}
|
||||
</>
|
||||
)}
|
||||
{protocol === "saml" && (
|
||||
<>
|
||||
<FormGroup
|
||||
|
@ -163,7 +169,7 @@ export const LoginSettings = ({
|
|||
</FormGroup>
|
||||
</>
|
||||
)}
|
||||
{protocol !== "saml" && (
|
||||
{protocol !== "saml" && standardFlowEnabled && (
|
||||
<FormGroup
|
||||
label={t("webOrigins")}
|
||||
fieldId="kc-web-origins"
|
||||
|
|
Loading…
Reference in a new issue