Skip to content

Commit

Permalink
Client Details: show redirect URIs w/ implicit flow (keycloak#33120)
Browse files Browse the repository at this point in the history
Fixes keycloak#33095

Signed-off-by: Stan Silvert <[email protected]>
(cherry picked from commit fe9c4dd)
  • Loading branch information
ssilvert committed Sep 20, 2024
1 parent 6a77296 commit 7d55a10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/apps/admin-ui/src/clients/add/LoginSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export const LoginSettings = ({
const { watch } = useFormContext<FormFields>();

const standardFlowEnabled = watch("standardFlowEnabled");
const implicitFlowEnabled = watch("implicitFlowEnabled");

return (
<>
Expand All @@ -33,7 +34,7 @@ export const LoginSettings = ({
label={t("homeURL")}
labelIcon={t("homeURLHelp")}
/>
{standardFlowEnabled && (
{(standardFlowEnabled || implicitFlowEnabled) && (
<>
<FormGroup
label={t("validRedirectUri")}
Expand Down

0 comments on commit 7d55a10

Please sign in to comment.