diff --git a/app/panel/containers/PanelContainer.js b/app/panel/containers/PanelContainer.js index 2bfff2956..30d32e1ed 100644 --- a/app/panel/containers/PanelContainer.js +++ b/app/panel/containers/PanelContainer.js @@ -39,7 +39,7 @@ const mapStateToProps = (state, ownProps) => Object.assign({}, state.panel, stat * @return {function} to be used as an argument in redux connect call */ const mapDispatchToProps = (dispatch, ownProps) => ({ - actions: bindActionCreators(Object.assign(panelActions, { filterTrackers }), dispatch), + actions: bindActionCreators(Object.assign({}, panelActions, { filterTrackers }), dispatch), }); /** * Connects Panel component to the Redux store. Pass updated match, location, and history props to the wrapped component. diff --git a/app/templates/panel.html b/app/templates/panel.html index 0a475fe67..b9c84de86 100644 --- a/app/templates/panel.html +++ b/app/templates/panel.html @@ -22,7 +22,6 @@