This commit is contained in:
Matthew Ryan Dillon 2015-10-19 15:26:04 -07:00
parent 93bdc594f5
commit f7f04fd25c

View file

@ -36,6 +36,10 @@ export default Ember.Component.extend({
}, },
delete: function() { delete: function() {
let char = this.get('row.characteristic');
if (char.get('isNew')) {
char.destroyRecord();
}
this.get('row').destroyRecord(); this.get('row').destroyRecord();
} }