Fixes #33
This commit is contained in:
parent
93bdc594f5
commit
f7f04fd25c
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue