Skip to content

Commit

Permalink
fix: fix the name of OpenID Connect security scheme (#1425)
Browse files Browse the repository at this point in the history
The official name of the OpenID Connect security scheme does not contain a space between 'Open' and 'ID', see https://openid.net/connect/.
  • Loading branch information
davidkaya committed Oct 27, 2020
1 parent 1fdfd13 commit c11f679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SecuritySchemes/SecuritySchemes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AUTH_TYPES = {
oauth2: 'OAuth2',
apiKey: 'API Key',
http: 'HTTP',
openIdConnect: 'Open ID Connect',
openIdConnect: 'OpenID Connect',
};

export interface OAuthFlowProps {
Expand Down

0 comments on commit c11f679

Please sign in to comment.