Client Details: show redirect URIs w/ implicit flow (#33120)
Fixes #33095 Signed-off-by: Stan Silvert <ssilvert@redhat.com>
This commit is contained in:
parent
87da4011f7
commit
fe9c4dd7ed
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue