diff options
author | Aldo Cortesi <aldo@corte.si> | 2017-12-16 10:30:08 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@corte.si> | 2017-12-17 10:11:02 +1300 |
commit | cd913d598da421b4c4e264e029be5f13e3e009bb (patch) | |
tree | 7fb418ea9c7d57c9006f0e322ce8127df5d9d390 /web/src | |
parent | 50a94db2cc2f3107f6f94c1e1407cb6840d1da08 (diff) | |
download | mitmproxy-cd913d598da421b4c4e264e029be5f13e3e009bb.tar.gz mitmproxy-cd913d598da421b4c4e264e029be5f13e3e009bb.tar.bz2 mitmproxy-cd913d598da421b4c4e264e029be5f13e3e009bb.zip |
command cuts: add completion
- Remove shortcuts for request, response, etc. - we don't need them if we have completion
- Restrict cuts specification to a set of prefixes
- Extend cuts to add a few more items
Diffstat (limited to 'web/src')
-rw-r--r-- | web/src/js/__tests__/ducks/_tflow.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/js/__tests__/ducks/_tflow.js b/web/src/js/__tests__/ducks/_tflow.js index 44b32342..8599200d 100644 --- a/web/src/js/__tests__/ducks/_tflow.js +++ b/web/src/js/__tests__/ducks/_tflow.js @@ -45,8 +45,8 @@ export default function(){ "port": 22, "pretty_host": "address", "scheme": "http", - "timestamp_end": null, - "timestamp_start": null + "timestamp_end": 2, + "timestamp_start": 1 }, "response": { "contentHash": "ab530a13e45914982b79f9b7e3fba994cfd1f3fb22f71cea1afbf02b460c6d1d", |