Fix adding ssh key

This commit is contained in:
Piotr Sarnacki 2016-01-13 11:16:44 +01:00
parent 271b8f89ea
commit ee5f842d51

View File

@ -62,7 +62,8 @@ export default Ember.Component.extend({
}
this.set('isSaving', true);
if (this.isValid()) {
ssh_key = this.get('model').setProperties({
ssh_key = this.get('model')
ssh_key.setProperties({
description: this.get('description'),
value: this.get('value')
});