Stop creating unnecessary characteristic
This commit is contained in:
parent
0956ef3a25
commit
e283f3f046
2 changed files with 4 additions and 10 deletions
|
@ -55,9 +55,7 @@ export default Controller.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
addMeasurement: function() {
|
addMeasurement: function() {
|
||||||
return this.store.createRecord('measurement', {
|
return this.store.createRecord('measurement');
|
||||||
characteristic: this.store.createRecord('characteristic', { sortOrder: -999 }),
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
|
@ -117,13 +117,9 @@ export default Component.extend(SetupMetaData, {
|
||||||
this.set('isDirty', true);
|
this.set('isDirty', true);
|
||||||
},
|
},
|
||||||
|
|
||||||
deleteMeasurement: function(value) {
|
deleteMeasurement: function(measurement) {
|
||||||
const characteristic = value.get('characteristic');
|
this.get('deleteQueue').pushObject(measurement);
|
||||||
if (characteristic.get('isNew')) {
|
this.get('measurements').removeObject(measurement);
|
||||||
this.get('deleteQueue').pushObject(characteristic);
|
|
||||||
}
|
|
||||||
this.get('deleteQueue').pushObject(value);
|
|
||||||
this.get('measurements').removeObject(value);
|
|
||||||
this.set('isDirty', true);
|
this.set('isDirty', true);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Reference in a new issue