diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-11-23 22:47:50 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-11-23 22:47:50 +0100 |
commit | 222106916e8c57ed9ab83f7c0c8d8a76d53ab298 (patch) | |
tree | 743898632b9f2b1d83d8a05a6725ab3311ae3ca9 /web/src/js/components/Footer.jsx | |
parent | d15ddfad14052b7fd971f3b82bbb86e7ec39c40b (diff) | |
parent | 45332006a3da246679e6043b4abee06cd3ba0636 (diff) | |
download | mitmproxy-222106916e8c57ed9ab83f7c0c8d8a76d53ab298.tar.gz mitmproxy-222106916e8c57ed9ab83f7c0c8d8a76d53ab298.tar.bz2 mitmproxy-222106916e8c57ed9ab83f7c0c8d8a76d53ab298.zip |
Merge branch 'mitmweb-eventlog'
Diffstat (limited to 'web/src/js/components/Footer.jsx')
-rw-r--r-- | web/src/js/components/Footer.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/src/js/components/Footer.jsx b/web/src/js/components/Footer.jsx index 96e7b7db..1ae4ee73 100644 --- a/web/src/js/components/Footer.jsx +++ b/web/src/js/components/Footer.jsx @@ -7,7 +7,7 @@ Footer.propTypes = { } function Footer({ settings }) { - let {mode, intercept, showhost, no_upstream_cert, rawtcp, http2, anticache, anticomp, stickyauth, stickycookie, stream} = settings; + let {mode, intercept, showhost, no_upstream_cert, rawtcp, http2, anticache, anticomp, stickyauth, stickycookie, stream_large_bodies} = settings; return ( <footer> {mode && mode != "regular" && ( @@ -40,8 +40,8 @@ function Footer({ settings }) { {stickycookie && ( <span className="label label-success">stickycookie: {stickycookie}</span> )} - {stream && ( - <span className="label label-success">stream: {formatSize(stream)}</span> + {stream_large_bodies && ( + <span className="label label-success">stream: {formatSize(stream_large_bodies)}</span> )} </footer> ) |