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 f5d4e1d commit b860d86Copy full SHA for b860d86
src/components/operations/operation-details/ko/runtime/authorization.ts
@@ -144,12 +144,12 @@ export class Authorization {
144
145
const keyHeader = new ConsoleHeader();
146
keyHeader.name(KnownHttpHeaders.Authorization);
147
- keyHeader.value(accessToken);
148
keyHeader.description = "Subscription key.";
149
keyHeader.secret = true;
150
keyHeader.inputTypeValue("password");
151
keyHeader.type = "string";
152
keyHeader.required = true;
+ keyHeader.value(accessToken);
153
154
if(!this.isGraphQL()) {
155
this.consoleOperation().request.headers.push(keyHeader);
0 commit comments