From 760af5db3554748044320de33dcc2a9fa46c6fae Mon Sep 17 00:00:00 2001 From: Erik Jan de Wit Date: Thu, 4 Aug 2022 12:10:37 +0200 Subject: [PATCH] default values, it used id instead of value (#3040) fixes: #3029 --- src/identity-providers/add/OIDCAuthentication.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/identity-providers/add/OIDCAuthentication.tsx b/src/identity-providers/add/OIDCAuthentication.tsx index 1d7da06d84..3960d0fd89 100644 --- a/src/identity-providers/add/OIDCAuthentication.tsx +++ b/src/identity-providers/add/OIDCAuthentication.tsx @@ -12,10 +12,10 @@ import { ClientIdSecret } from "../component/ClientIdSecret"; import { HelpItem } from "../../components/help-enabler/HelpItem"; const clientAuthenticationTypes = [ - "clientAuth_post", - "clientAuth_basic", - "clientAuth_secret_jwt", - "clientAuth_privatekey_jwt", + "client_secret_post", + "client_secret_basic", + "client_secret_jwt", + "private_key_jwt", ]; export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => { @@ -73,7 +73,7 @@ export const OIDCAuthentication = ({ create = true }: { create?: boolean }) => { />