diff --git a/client/src/components/graph/graph.js b/client/src/components/graph/graph.js index d14d73b1..cc29a77a 100644 --- a/client/src/components/graph/graph.js +++ b/client/src/components/graph/graph.js @@ -22,7 +22,8 @@ import scaleLinear from "../../util/scaleLinear"; responsive: state.responsive, colorRGB: _.get(state.controls, "colorRGB", null), opacityForDeselectedCells: state.controls.opacityForDeselectedCells, - selectionUpdate: _.get(state.controls, "crossfilter.updateTime", null) + selectionUpdate: _.get(state.controls, "crossfilter.updateTime", null), + resettingInterface: state.controls.resettingInterface })) class Graph extends React.Component { constructor(props) { @@ -339,11 +340,20 @@ class Graph extends React.Component { resetInterface() { const { dispatch } = this.props; + dispatch({ + type: "interface reset started" + }); dispatch(actions.resetInterface()); } render() { - const { dispatch, responsive, crossfilter } = this.props; + const { + dispatch, + responsive, + crossfilter, + resettingInterface + } = this.props; + const { mode } = this.state; return (