@@ -42,7 +42,7 @@ export default class SecuritySchemes extends LitElement {
42
42
< td >
43
43
${ this . schemes [ s ] . type === 'apiKey' ?html `
44
44
Send < code > '${ this . schemes [ s ] . name } '</ code > in < code > '${ this . schemes [ s ] . in } '</ code > with the given value
45
- < div class ="api-key " data-type ="${ this . schemes [ s ] . type } " data-in ="${ this . schemes [ s ] . in } " data-name ="${ this . schemes [ s ] . name } " style ="margin:5px 0 ">
45
+ < div class ="api-key " data-type ="${ this . schemes [ s ] . type } " data-in ="${ this . schemes [ s ] . in } " data-name ="${ this . schemes [ s ] . name } " style ="margin:5px 0 " spellcheck =" false " >
46
46
< input type ="text " name ="token " style ="width:202px; " placeholder ="api-token " >
47
47
< button
48
48
class ="m-btn "
@@ -54,8 +54,8 @@ export default class SecuritySchemes extends LitElement {
54
54
${ this . schemes [ s ] . type === 'http' && this . schemes [ s ] . scheme === 'basic' ?html `
55
55
Send < code > 'Authorization'</ code > in header which will contains the word < code > 'Basic'</ code > followed by a space and a base64-encoded string username:password.
56
56
< div class ="api-key " data-type ="${ this . schemes [ s ] . type } " data-scheme ="${ this . schemes [ s ] . scheme } " data-in ="header " data-name ="Authorization " style ="margin:15px 0 ">
57
- < input type ="text " name ="username " style ="width:100px; " placeholder ="username ">
58
- < input type ="text " name ="password " style ="width:100px; " placeholder ="password ">
57
+ < input type ="text " name ="username " style ="width:100px; " placeholder ="username " spellcheck =" false " >
58
+ < input type ="text " name ="password " style ="width:100px; " placeholder ="password " spellcheck =" false " >
59
59
< button
60
60
class ="m-btn "
61
61
data-action ="${ this . keyValue ?'CLEAR' :'SET' } "
@@ -66,7 +66,7 @@ export default class SecuritySchemes extends LitElement {
66
66
${ this . schemes [ s ] . type === 'http' && this . schemes [ s ] . scheme === 'bearer' ?html `
67
67
Send < code > 'Authorization'</ code > in header which will contains the word < code > 'Bearer'</ code > followed by a space and a Token String.
68
68
< div class ="api-key " data-type ="${ this . schemes [ s ] . type } " data-scheme ="${ this . schemes [ s ] . scheme } " data-in ="header " data-name ="Authorization " style ="margin:15px 0 ">
69
- < input type ="text " name ="token " style ="width:202px; " placeholder ="api-token ">
69
+ < input type ="text " name ="token " style ="width:202px; " placeholder ="api-token " spellcheck =" false " >
70
70
< button
71
71
class ="m-btn "
72
72
data-action ="${ this . keyValue ?'CLEAR' :'SET' } "
@@ -81,8 +81,8 @@ export default class SecuritySchemes extends LitElement {
81
81
${ this . schemes [ s ] . flows [ f ] . tokenUrl ?html `< div > < b > Token URL:</ b > < code class ="url "> ${ this . schemes [ s ] . flows [ f ] . tokenUrl } </ code > </ div > ` :`` }
82
82
${ this . schemes [ s ] . flows [ f ] . refreshUrl ?html `< div > < b > Refresh URL:</ b > < code class ="url "> ${ this . schemes [ s ] . flows [ f ] . refreshUrl } </ code > </ div > ` :`` }
83
83
< div class ="oauth " style ="margin:5px 0 ">
84
- < input type ="text " name ="client " style ="width:100px; " placeholder ="client-id ">
85
- < input type ="text " name ="secret " style ="width:100px; " placeholder ="client-secret ">
84
+ < input type ="text " name ="client " style ="width:100px; " placeholder ="client-id " spellcheck =" false " >
85
+ < input type ="text " name ="secret " style ="width:100px; " placeholder ="client-secret " spellcheck =" false " >
86
86
</ div >
87
87
` ) }
88
88
</ div >
0 commit comments