aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/proxyapp.jsx.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/components/proxyapp.jsx.js')
-rw-r--r--web/src/js/components/proxyapp.jsx.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/src/js/components/proxyapp.jsx.js b/web/src/js/components/proxyapp.jsx.js
index b45ec911..ff6e8da1 100644
--- a/web/src/js/components/proxyapp.jsx.js
+++ b/web/src/js/components/proxyapp.jsx.js
@@ -19,7 +19,6 @@ var ProxyAppMain = React.createClass({
SettingsStore.removeListener("change", this.onSettingsChange);
},
onSettingsChange: function () {
- console.log("onSettingsChange");
this.setState({settings: SettingsStore.getAll()});
},
render: function () {
@@ -27,7 +26,7 @@ var ProxyAppMain = React.createClass({
<div id="container">
<Header settings={this.state.settings}/>
<this.props.activeRouteHandler settings={this.state.settings}/>
- <Splitter axis="y"/>
+ {this.state.settings.showEventLog ? <Splitter axis="y"/> : null}
{this.state.settings.showEventLog ? <EventLog/> : null}
<Footer settings={this.state.settings}/>
</div>