Also show algorithm dropdown on client-jwt (#3046)
This commit is contained in:
parent
d843fd5b4c
commit
223c5b03da
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ export const Credentials = ({ client, save, refresh }: CredentialsProps) => {
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
{clientAuthenticatorType === "client-jwt" && <SignedJWT />}
|
{(clientAuthenticatorType === "client-jwt" ||
|
||||||
|
clientAuthenticatorType === "client-secret-jwt") && <SignedJWT />}
|
||||||
{clientAuthenticatorType === "client-x509" && <X509 />}
|
{clientAuthenticatorType === "client-x509" && <X509 />}
|
||||||
<ActionGroup>
|
<ActionGroup>
|
||||||
<Button variant="primary" type="submit" isDisabled={!isDirty}>
|
<Button variant="primary" type="submit" isDisabled={!isDirty}>
|
||||||
|
|
Loading…
Reference in a new issue