Merge branch 'master' into clostridium
* master: Easiest to just unload the entire store Hide measurements on new strain Fix char/strain sort order
This commit is contained in:
commit
26dcecaa05
3 changed files with 20 additions and 13 deletions
|
@ -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'));
|
||||
});
|
||||
},
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<table class="flakes-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th {{action "changeSortParam" "strain.strainName"}} class="click">Strain</th>
|
||||
<th {{action "changeSortParam" "strain.sortOrder"}} class="click">Strain</th>
|
||||
<th {{action "changeSortParam" "value"}} class="click">Value</th>
|
||||
<th {{action "changeSortParam" "notes"}} class="click">Notes</th>
|
||||
</tr>
|
||||
|
|
|
@ -53,18 +53,24 @@
|
|||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div>
|
||||
{{
|
||||
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
|
||||
}}
|
||||
</div>
|
||||
{{#if isNew}}
|
||||
<div>
|
||||
Please save before adding measurements
|
||||
</div>
|
||||
{{else}}
|
||||
<div>
|
||||
{{
|
||||
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
|
||||
}}
|
||||
</div>
|
||||
{{/if}}
|
||||
<br>
|
||||
<a class="button-red smaller" {{action 'cancel'}}>
|
||||
Cancel
|
||||
|
|
Reference in a new issue