diff --git a/app/components/add-ssh-key.js b/app/components/add-ssh-key.js index fce4371d..67a0f152 100644 --- a/app/components/add-ssh-key.js +++ b/app/components/add-ssh-key.js @@ -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') });