Remove "Revoke Refresh Token" when not revoke on (#2234)

This commit is contained in:
Erik Jan de Wit 2022-03-14 11:26:06 +01:00 committed by GitHub
parent d85fc18a63
commit 883e59a5a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,6 +75,12 @@ export const RealmSettingsTokensTab = ({
defaultValue: 36000, defaultValue: 36000,
}); });
const revokeRefreshToken = useWatch({
control,
name: "revokeRefreshToken",
defaultValue: false,
});
return ( return (
<PageSection variant="light"> <PageSection variant="light">
<FormPanel <FormPanel
@ -167,6 +173,7 @@ export const RealmSettingsTokensTab = ({
)} )}
/> />
</FormGroup> </FormGroup>
{revokeRefreshToken && (
<FormGroup <FormGroup
label={t("refreshTokenMaxReuse")} label={t("refreshTokenMaxReuse")}
labelIcon={ labelIcon={
@ -195,6 +202,7 @@ export const RealmSettingsTokensTab = ({
)} )}
/> />
</FormGroup> </FormGroup>
)}
</FormAccess> </FormAccess>
</FormPanel> </FormPanel>
<FormPanel <FormPanel