Commit fb8f05ee165b4da8aec0e4adf48992a86052ab04
1 parent
32ebd438
Exists in
master
and in
4 other branches
activity events reduced to 20 from 40
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/projects_controller.rb
| ... | ... | @@ -66,7 +66,7 @@ class ProjectsController < ApplicationController |
| 66 | 66 | |
| 67 | 67 | def show |
| 68 | 68 | return render "projects/empty" unless @project.repo_exists? |
| 69 | - limit = (params[:limit] || 40).to_i | |
| 69 | + limit = (params[:limit] || 20).to_i | |
| 70 | 70 | @activities = @project.updates(limit) |
| 71 | 71 | end |
| 72 | 72 | ... | ... |