Ember-Data, jumping back from detail view to list

Hello community,

I am currently loading a list of entities from a REST-API (Django) using Ember Data and a modified RESTAdapter. In the list of entities (path: ‘/entities’, maps to a route called ‘entities’) I can click on a link to jump to an detail view (‘/entities/:entity_id’) of the entity record - works like a charm.

But for some reasons somethings strange happens sometimes… :slight_smile: When I get back to the list view (‘/entities’) just the one record I visited is shown on the list. After a few seconds the ORM issues a new fetch and all the records are visible again.

Does it ring your bells? What am I doing wrong?

Regards, Martin