We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4957337 commit bd17324Copy full SHA for bd17324
src/templates/security-scheme-template.js
@@ -303,9 +303,9 @@ export default function securitySchemeTemplate() {
303
}
304
</td>
305
<td>
306
- ${v.type.toLowerCase() === 'apiKey' || (v.type.toLowerCase() === 'http' && v.scheme.toLowerCase() === 'bearer')
+ ${v.type.toLowerCase() === 'apikey' || (v.type.toLowerCase() === 'http' && v.scheme.toLowerCase() === 'bearer')
307
? html`
308
- ${v.type === 'apiKey'
+ ${v.type.toLowerCase() === 'apikey'
309
? html`Send <code>${v.name}</code> in <code>${v.in}</code> with the given value`
310
: html`Send <code>Authorization</code> in <code>header</code> containing the word <code>Bearer</code> followed by a space and a Token String.`
311
0 commit comments