diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-09-17 17:30:19 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-17 17:30:19 +0200 |
commit | 102bd075689892b06765fb857c89604fe9cf33e5 (patch) | |
tree | 6782d4ee795337204d29a873e7854d6e426574df /web/src/js/components/proxyapp.jsx | |
parent | 8245dd19f4f2f4cdd74a6fdf9b5e051c2cd2fac6 (diff) | |
download | mitmproxy-102bd075689892b06765fb857c89604fe9cf33e5.tar.gz mitmproxy-102bd075689892b06765fb857c89604fe9cf33e5.tar.bz2 mitmproxy-102bd075689892b06765fb857c89604fe9cf33e5.zip |
implement FlowStore basics
Diffstat (limited to 'web/src/js/components/proxyapp.jsx')
-rw-r--r-- | web/src/js/components/proxyapp.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/components/proxyapp.jsx b/web/src/js/components/proxyapp.jsx index 2f1a9861..63998ffe 100644 --- a/web/src/js/components/proxyapp.jsx +++ b/web/src/js/components/proxyapp.jsx @@ -38,7 +38,7 @@ var ProxyAppMain = React.createClass({ var ProxyApp = ( <ReactRouter.Routes location="hash"> <ReactRouter.Route name="app" path="/" handler={ProxyAppMain}> - <ReactRouter.Route name="main" handler={TrafficTable}/> + <ReactRouter.Route name="main" handler={FlowTable}/> <ReactRouter.Route name="reports" handler={Reports}/> <ReactRouter.Redirect to="main"/> </ReactRouter.Route> |