From 01752587168c634aeb2c0bc2eedd88d73b3517a6 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Wed, 13 May 2015 18:07:35 +0100 Subject: [PATCH] Fixing lint error causing build to fail --- ghost/admin/app/controllers/settings/about.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/admin/app/controllers/settings/about.js b/ghost/admin/app/controllers/settings/about.js index 405fc1244b..c8bb28ebc3 100644 --- a/ghost/admin/app/controllers/settings/about.js +++ b/ghost/admin/app/controllers/settings/about.js @@ -3,7 +3,7 @@ var SettingsAboutController = Ember.Controller.extend({ updateNotificationCount: 0, actions: { - updateNotificationChange: function (count) { + updateNotificationChange: function (count) { this.set('updateNotificationCount', count); } }