UX: Change default date range of dashboard trending search report to a month
This commit is contained in:
parent
2bdbca3801
commit
ece44a44f8
|
@ -60,7 +60,7 @@ export default Ember.Controller.extend(PeriodComputationMixin, {
|
||||||
trendingSearchFilters() {
|
trendingSearchFilters() {
|
||||||
return {
|
return {
|
||||||
startDate: moment()
|
startDate: moment()
|
||||||
.subtract(6, "days")
|
.subtract(1, "month")
|
||||||
.startOf("day"),
|
.startOf("day"),
|
||||||
endDate: this.get("today")
|
endDate: this.get("today")
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue