We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3ec38 commit ca8d203Copy full SHA for ca8d203
src/ReactMeteor.js
@@ -1,6 +1,8 @@
1
var ReactMeteorMixin = {
2
_handleMeteorChange: function () {
3
- this.setState(this.getMeteorState());
+ if( this.getMeteorState !== undefined ){
4
+ this.setState(this.getMeteorState());
5
+ }
6
},
7
8
_cancelComputation: function () {
0 commit comments