mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 17:28:29 +02:00
OAuth 2 (#158)
This commit is contained in:
@@ -153,9 +153,10 @@ export function CommandPaletteDialog({ onClose }: { onClose: () => void }) {
|
||||
label: 'Send Request',
|
||||
onSelect: () => sendRequest(activeRequest.id),
|
||||
});
|
||||
for (const a of httpRequestActions) {
|
||||
for (let i = 0; i < httpRequestActions.length; i++) {
|
||||
const a = httpRequestActions[i]!;
|
||||
commands.push({
|
||||
key: a.key,
|
||||
key: `http_request_action.${i}`,
|
||||
label: a.label,
|
||||
onSelect: () => a.call(activeRequest),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user