mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
9e84bc4387
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
46 lines
987 B
JavaScript
46 lines
987 B
JavaScript
import React, {Component} from 'react';
|
|
import {MOD_SYM} from '../lib/constants';
|
|
|
|
const KeyboardShortcutsTable = () => (
|
|
<table className="wide">
|
|
<tbody>
|
|
<tr>
|
|
<td>Send Request</td>
|
|
<td><code>{MOD_SYM}Enter</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Switch Requests</td>
|
|
<td><code>{MOD_SYM}P</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Focus URL Bar</td>
|
|
<td><code>{MOD_SYM}L</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>New Request</td>
|
|
<td><code>{MOD_SYM}N</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Duplicate Request</td>
|
|
<td><code>{MOD_SYM}D</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Show Cookie Manager</td>
|
|
<td><code>{MOD_SYM}K</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Show Environment Editor</td>
|
|
<td><code>{MOD_SYM}E</code></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Show Settings</td>
|
|
<td><code>{MOD_SYM},</code></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
);
|
|
|
|
KeyboardShortcutsTable.propTypes = {};
|
|
|
|
export default KeyboardShortcutsTable;
|