Fix notification

This commit is contained in:
uu59 2014-11-27 13:48:41 +09:00
parent 23557d6763
commit 12aed8fe64

View File

@ -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; }
}
},