Don't unload user models on delete
This commit is contained in:
parent
8d4affd572
commit
3313b6e5f9
1 changed files with 4 additions and 1 deletions
|
@ -8,7 +8,10 @@ export default Mixin.create({
|
||||||
actions: {
|
actions: {
|
||||||
delete: function() {
|
delete: function() {
|
||||||
this.get('model').destroyRecord().then(() => {
|
this.get('model').destroyRecord().then(() => {
|
||||||
this.get('store').unloadAll();
|
// Instead of unloading the entire store, we keep the loaded user models
|
||||||
|
['species', 'strain', 'characteristic', 'measurement'].map((model) => {
|
||||||
|
this.get('store').unloadAll(model);
|
||||||
|
});
|
||||||
this.transitionToRoute(this.get('transitionRoute'));
|
this.transitionToRoute(this.get('transitionRoute'));
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue