mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-09 23:12:06 -03:30
Fixes #33095 Signed-off-by: Stan Silvert <ssilvert@redhat.com> (cherry picked from commit fe9c4dd7ed0d7729e12b896e2a79d001bebe3b93)
This commit is contained in:
parent
06a44202db
commit
b1526cd4a5
@ -18,6 +18,7 @@ export const LoginSettings = ({
|
||||
const { watch } = useFormContext<FormFields>();
|
||||
|
||||
const standardFlowEnabled = watch("standardFlowEnabled");
|
||||
const implicitFlowEnabled = watch("implicitFlowEnabled");
|
||||
|
||||
return (
|
||||
<>
|
||||
@ -33,7 +34,7 @@ export const LoginSettings = ({
|
||||
label={t("homeURL")}
|
||||
labelIcon={t("homeURLHelp")}
|
||||
/>
|
||||
{standardFlowEnabled && (
|
||||
{(standardFlowEnabled || implicitFlowEnabled) && (
|
||||
<>
|
||||
<FormGroup
|
||||
label={t("validRedirectUri")}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user