hide oauth client details with type password

This commit is contained in:
dswbx
2025-03-21 18:03:45 +01:00
parent f6996b1953
commit 0c15ec1434

View File

@@ -240,8 +240,8 @@ const StrategyPasswordForm = () => {
const StrategyOAuthForm = () => { const StrategyOAuthForm = () => {
return ( return (
<> <>
<Field name="config.client.client_id" required /> <Field name="config.client.client_id" required inputProps={{ type: "password" }} />
<Field name="config.client.client_secret" required /> <Field name="config.client.client_secret" required inputProps={{ type: "password" }} />
</> </>
); );
}; };