Remove the default date range limit from analytics dashboards
Problem to solve
In #377817 (comment 1214689565)+ we added a optional date range filter to the analytics dashboard.
As part of this a default date range limit of 31
days was erroneously added and should be removed.
Proposed solution
The default date range might still be useful for dashboards with performance limitations, so I think we should make the limit null
by default and configurable.
Implementation plan
frontend weight
- Add a new
dateRangeLimit
optional prop tocustomizable_dashboard.vue
. - Add a new
dateRangeLimit
optional prop tocustomizable_dashboard/filters/date_range_filter.vue
.- By default this is
0
ornull
- By default this is
- If the
dateRangeLimit
is falsy then the limit nor the tooltip should be applicable ongl-daterange-picker
. - Update specs.
Edited by Dennis Tang