aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js')
-rw-r--r--web/src/js/components/flowtable.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/src/js/components/flowtable.js b/web/src/js/components/flowtable.js
index 76c865e2..cd50b891 100644
--- a/web/src/js/components/flowtable.js
+++ b/web/src/js/components/flowtable.js
@@ -79,10 +79,10 @@ var FlowTable = React.createClass({
this.props.view.removeListener("remove");
this.props.view.removeListener("recalculate");
}
- nextProps.props.view.addListener("add", this.onChange);
- nextProps.props.view.addListener("update", this.onChange);
- nextProps.props.view.addListener("remove", this.onChange);
- nextProps.props.view.addListener("recalculate", this.onChange);
+ nextProps.view.addListener("add", this.onChange);
+ nextProps.view.addListener("update", this.onChange);
+ nextProps.view.addListener("remove", this.onChange);
+ nextProps.view.addListener("recalculate", this.onChange);
}
},
getDefaultProps: function () {