mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
hide oauth client details with type password
This commit is contained in:
@@ -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" }} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user