UX: Change default date range of dashboard trending search report to a month

This commit is contained in:
Vinoth Kannan 2018-12-18 03:00:30 +05:30
parent 2bdbca3801
commit ece44a44f8
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ export default Ember.Controller.extend(PeriodComputationMixin, {
trendingSearchFilters() {
return {
startDate: moment()
.subtract(6, "days")
.subtract(1, "month")
.startOf("day"),
endDate: this.get("today")
};