Actions
Feature #32248
closedChange the default value for "Days displayed on project activity" setting to 10
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
Activity shows 30 days of project activities by default. But I think it is better to use a smaller value as a default value for the following reasons:
- The cost to render the activity page is expensive. It will take a long time to render 30 days of activities if there are a lot of updates
- Activity page is used to understand recent updates. I think 7 days per page is enough for the purpose. Activities of 20 days or 30 days ago is not always necessary
diff --git a/config/settings.yml b/config/settings.yml
index d345a4cfa..a56911aa7 100644
--- a/config/settings.yml
+++ b/config/settings.yml
@@ -75,7 +75,7 @@ issues_export_limit:
default: 500
activity_days_default:
format: int
- default: 30
+ default: 7
per_page_options:
default: '25,50,100'
search_results_per_page:
Actions