Client Details: show redirect URIs w/ implicit flow (#33120) (#33150)

Fixes #33095

Signed-off-by: Stan Silvert <ssilvert@redhat.com>
(cherry picked from commit fe9c4dd7ed0d7729e12b896e2a79d001bebe3b93)
This commit is contained in:
Stan Silvert 2024-09-23 07:25:06 -04:00 committed by GitHub
parent 06a44202db
commit b1526cd4a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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")}