Luke Sanwick
Luke Sanwick
I have a very similar situation, where the loading action does occur and the Store has the correct data, but there doesn't appear to be an emitChange to trigger a...
After lengthy experimenting and digging through the code, changing when I call my action fixes the problem. ``` coffee componentWillMount: -> OrderStore.fetchOrders() ``` becomes ``` coffee @componentDidConnect: -> OrderStore.fetchOrders() ```...
@CezarLuiz0, not sure about your case, if you set a `debugger` in `onGetAll` does it get caught? @Ganasist, I think this will fix your problem: ``` javascript @connectToStores export default...
@CezarLuiz0, can you show the code for your View/Component?
@CezarLuiz0 try making this change. Instead of: ``` javascript componentDidMount() { EventoActions.getAll(1); EventoStore.listen(this.onEventoChange); } ``` Move it to componentDidConnect: ``` javascript static componentDidConnect() { EventoActions.getAll(1); } ``` Also, having the...
Sorry, should have clarified, `componentDidConnect` receives two arguments, so if you need props to fire an action, you have them. For example: ``` javascript static componentDidConnect(props, context) { EventoActions.getEvent(props.id); }...
I'm hitting this same issue on Mac OS X, where the watch system doesn't seem to notice files changing. I've found I can get it to work correctly by providing...
Yeah, this would be really great to have, as my team heavily leverages the "team" assignment for code reviews.
Just wanted to put the message out to interested folks that I have released https://github.com/EnjoyTech/apollo-studio-tracing-ruby, which is fully compatible with the new Apollo Studio tracing format. Big shout out to...
Yeah, hitting this same issue right now. :(