FIX: counters were showing future instead of past (#6299)

This commit is contained in:
Joffrey JAFFEUX
2018-08-22 12:37:05 +02:00
committed by GitHub
parent 599cebf8ad
commit 87d443f070
5 changed files with 139 additions and 1 deletions

View File

@ -40,6 +40,14 @@ export default Ember.Controller.extend(PeriodComputationMixin, {
];
},
@computed
activityMetricsFilters() {
return {
startDate: this.get("lastMonth"),
endDate: this.get("today")
};
},
@computed
trendingSearchOptions() {
return { table: { total: false, limit: 8 } };