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
* fix(orderedReducer): fix issue where adding a document would break ordered structure - #151
* fix(ci): add alpha to travis branches config so tests run for alpha version - #151
* feat(query): support for populate using v1 state pattern (may have unexpected results, see note below) - #48
* fix(examples): complete example updated with `react-scripts` and `[email protected]`
NOTE: The `populate` helper will need to work differently for v1.0.0 since things are stored differently in state. It will most likely not work when populating off of any `root` settings that are not at the base of the state tree.
@@ -151,7 +151,7 @@ class Todos extends Component {
151
151
store:PropTypes.object.isRequired
152
152
}
153
153
154
-
componentWillMount () {
154
+
componentDidMount () {
155
155
const { firestore } =this.context.store
156
156
firestore.get('todos')
157
157
}
@@ -457,16 +457,16 @@ Storing data under a different path within redux is as easy as passing the `stor
457
457
Other Firebase statics (such as [FieldValue](https://firebase.google.com/docs/reference/js/firebase.firestore.FieldValue)) are available through the firestore instance:
Optional configuration options for redux-firestore, provided to reduxFirestore enhancer as optional second argument. Combine any of them together in an object.
0 commit comments