Commit 765d0e876383bfc8c2d5826f81824ed911dbb653
1 parent
a6e8c7fa
Exists in
master
and in
29 other branches
Changing limit of the blocks created by default
ActionItem1773
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/models/environment.rb
... | ... | @@ -132,8 +132,8 @@ class Environment < ActiveRecord::Base |
132 | 132 | env.boxes[1].blocks << RecentDocumentsBlock.new |
133 | 133 | |
134 | 134 | # "right" area |
135 | - env.boxes[2].blocks << CommunitiesBlock.new(:limit => 4) | |
136 | - env.boxes[2].blocks << PeopleBlock.new(:limit => 4) | |
135 | + env.boxes[2].blocks << CommunitiesBlock.new(:limit => 6) | |
136 | + env.boxes[2].blocks << PeopleBlock.new(:limit => 6) | |
137 | 137 | end |
138 | 138 | |
139 | 139 | # One Environment can be reached by many domains | ... | ... |