diff --git a/components/graph/base.js b/components/graph/base.js index 8a917b3..2b37d44 100644 --- a/components/graph/base.js +++ b/components/graph/base.js @@ -132,7 +132,7 @@ class GraphView extends GraphViewBase { super.componentDidUpdate(previousProps, previousState); } - getMouseCoordinates() { + getMouseCoordinates(...args) { if (this.props.selected && this.props.moved) { return [ this.props.selected.x, @@ -140,7 +140,7 @@ class GraphView extends GraphViewBase { ]; } - return super.getMouseCoordinates(); + return super.getMouseCoordinates(...args); } getNodeComponent(id, node) {