diff --git a/app/assets/javascripts/notification.js b/app/assets/javascripts/notification.js index 587066f..04aa6ae 100644 --- a/app/assets/javascripts/notification.js +++ b/app/assets/javascripts/notification.js @@ -46,10 +46,10 @@ computed: { alertsCount: { - $get: function(){ return this.alerts.length; } + get: function(){ return this.alerts.length; } }, hasAlerts: { - $get: function(){ return this.alertsCount > 0; } + get: function(){ return this.alertsCount > 0; } } },