Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Fix devtools
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhoefling committed Feb 4, 2016
1 parent fc5868c commit 5fc1781
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/components/execute/ClientConfiguration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ const ClientConfiguration = React.createClass({
this.props.onConfigChange(config);
},

onBatchChange(event, index, value) {
onBatchChange(event, valid) {
var value = event.target.value;
var client = this.props.currentClient;
var config = this.getConfig(client);
if (valid || !value) {
Expand Down
2 changes: 1 addition & 1 deletion app/containers/Root.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Root = React.createClass({
<Provider store={store}>
<div>
<ReduxRouter routes={routes}/>
{this.renderDevTools}
{this.renderDevTools()}
</div>
</Provider>
</div>
Expand Down

0 comments on commit 5fc1781

Please sign in to comment.