diff --git a/app/mixins/delete-model.js b/app/mixins/delete-model.js index e16fb76..73f6ec5 100644 --- a/app/mixins/delete-model.js +++ b/app/mixins/delete-model.js @@ -8,6 +8,7 @@ export default Mixin.create({ actions: { delete: function() { this.get('model').destroyRecord().then(() => { + this.get('store').unloadAll(); this.transitionToRoute(this.get('transitionRoute')); }); }, diff --git a/app/pods/protected/characteristics/show/measurements-table/template.hbs b/app/pods/protected/characteristics/show/measurements-table/template.hbs index d260cfc..74ce23b 100644 --- a/app/pods/protected/characteristics/show/measurements-table/template.hbs +++ b/app/pods/protected/characteristics/show/measurements-table/template.hbs @@ -7,7 +7,7 @@ - + diff --git a/app/pods/protected/strains/strain-form/template.hbs b/app/pods/protected/strains/strain-form/template.hbs index 9747a86..e44096f 100644 --- a/app/pods/protected/strains/strain-form/template.hbs +++ b/app/pods/protected/strains/strain-form/template.hbs @@ -53,18 +53,24 @@ -
- {{ - protected/strains/measurements-table - strain=strain - add-characteristic=(action "addCharacteristic") - allCharacteristics=allCharacteristics - save-measurement=(action "saveMeasurement") - delete-measurement=(action "deleteMeasurement") - canEdit=strain.canEdit - canAdd=metaData.canAdd - }} -
+ {{#if isNew}} +
+ Please save before adding measurements +
+ {{else}} +
+ {{ + protected/strains/measurements-table + strain=strain + add-characteristic=(action "addCharacteristic") + allCharacteristics=allCharacteristics + save-measurement=(action "saveMeasurement") + delete-measurement=(action "deleteMeasurement") + canEdit=strain.canEdit + canAdd=metaData.canAdd + }} +
+ {{/if}}
Cancel
StrainStrain Value Notes