aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/ProxyApp.jsx
diff options
context:
space:
mode:
authorJason <jason.daurus@gmail.com>2016-06-22 00:49:21 +0800
committerJason <jason.daurus@gmail.com>2016-06-22 00:49:21 +0800
commit0cab9ef1fae927f9ef365526262bef32bd1b526b (patch)
treee3d64264e0239f21e71b1c2132443001fdadd363 /web/src/js/components/ProxyApp.jsx
parent9cb5b0af9db83d84af0bdb45d56a9755b400c212 (diff)
parent4576dbf8aac8996f7f87320aba3132b657b02278 (diff)
downloadmitmproxy-0cab9ef1fae927f9ef365526262bef32bd1b526b.tar.gz
mitmproxy-0cab9ef1fae927f9ef365526262bef32bd1b526b.tar.bz2
mitmproxy-0cab9ef1fae927f9ef365526262bef32bd1b526b.zip
Merge remote-tracking branch 'origin/master' into websocket
Conflicts: mitmproxy/web/static/app.js web/src/js/components/ProxyApp.jsx
Diffstat (limited to 'web/src/js/components/ProxyApp.jsx')
-rw-r--r--web/src/js/components/ProxyApp.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/src/js/components/ProxyApp.jsx b/web/src/js/components/ProxyApp.jsx
index 89bd95fd..84564c32 100644
--- a/web/src/js/components/ProxyApp.jsx
+++ b/web/src/js/components/ProxyApp.jsx
@@ -120,11 +120,11 @@ class ProxyAppMain extends Component {
}
render() {
- const { showEventLog, location, children, settings } = this.props
+ const { showEventLog, location, children } = this.props
const query = this.getQuery()
return (
<div id="container" tabIndex="0" onKeyDown={this.onKeyDown}>
- <Header ref="header" settings={settings} updateLocation={this.updateLocation} query={query} />
+ <Header ref="header" updateLocation={this.updateLocation} query={query} />
{React.cloneElement(
children,
{ ref: 'view', location, query, updateLocation: this.updateLocation }
@@ -132,7 +132,7 @@ class ProxyAppMain extends Component {
{showEventLog && (
<EventLog key="eventlog"/>
)}
- <Footer settings={settings}/>
+ <Footer />
</div>
)
}