mirror of
https://github.com/discourse/discourse.git
synced 2025-05-25 09:57:25 +08:00
Dashboard calculations are done with an async job now
This commit is contained in:
@ -42,5 +42,9 @@ Discourse.AdminDashboardController = Ember.Controller.extend({
|
||||
|
||||
problemsTimestamp: function() {
|
||||
return moment(this.get('problemsFetchedAt')).format('LLL');
|
||||
}.property('problemsFetchedAt')
|
||||
}.property('problemsFetchedAt'),
|
||||
|
||||
updatedTimestamp: function() {
|
||||
return moment(this.get('updated_at')).format('LLL');
|
||||
}.property('updated_at')
|
||||
});
|
||||
|
Reference in New Issue
Block a user