You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
When you scope your data eg. let $scope = model.scope('_page.variable') And set it to null $scope.set(null);
In method react-sharedb/lib/subscribe.js: _updateCollectionData, will be called: this.data = (0, _observerUtil.observable)(this.data);
Where this.data == null;
In observer methods it will test if it is not instrument and call on it: var constructor = ref.constructor Where ref will be null.
Temporary fix for this is to set false insteadof null.
The text was updated successfully, but these errors were encountered:
When you scope your data eg.
let $scope = model.scope('_page.variable')
And set it to null$scope.set(null);
In method react-sharedb/lib/subscribe.js: _updateCollectionData, will be called:
this.data = (0, _observerUtil.observable)(this.data);
Where this.data == null;
In observer methods it will test if it is not instrument and call on it:
var constructor = ref.constructor
Where ref will be null.Temporary fix for this is to set false insteadof null.
The text was updated successfully, but these errors were encountered: