From edc95ecb3a4466dd8b41600ad78b94047caa12fd Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 20 Nov 2015 18:49:14 -0700 Subject: [PATCH 1/3] Fix char/strain sort order Fixes #64. --- .../characteristics/show/measurements-table/template.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ - + From f93c4af02994893a1d8dd1c6f12d974a4e4499de Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 20 Nov 2015 19:00:07 -0700 Subject: [PATCH 2/3] Hide measurements on new strain Fixes #65 --- .../strains/strain-form/template.hbs | 30 +++++++++++-------- 1 file changed, 18 insertions(+), 12 deletions(-) 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 From 1c16c7239fb301e138f5fac04005d17bb77bc3c9 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 25 Nov 2015 21:29:39 -0700 Subject: [PATCH 3/3] Easiest to just unload the entire store Fixes #66 --- app/mixins/delete-model.js | 1 + 1 file changed, 1 insertion(+) 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')); }); },
StrainStrain Value Notes