From 99b7ce4a9d6f03147997b3d4fdb9e49c92ac3f89 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 14 Jan 2016 11:28:25 +0100 Subject: [PATCH] Add missing semicolon --- app/components/add-ssh-key.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/add-ssh-key.js b/app/components/add-ssh-key.js index 67a0f152..0bf3a0d9 100644 --- a/app/components/add-ssh-key.js +++ b/app/components/add-ssh-key.js @@ -62,7 +62,7 @@ export default Ember.Component.extend({ } this.set('isSaving', true); if (this.isValid()) { - ssh_key = this.get('model') + ssh_key = this.get('model'); ssh_key.setProperties({ description: this.get('description'), value: this.get('value')