Commit 907c334fe0ef1be349668cb7bd9639780a098344
1 parent
86da625f
Exists in
master
and in
4 other branches
fix decorate call for milestone users
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/milestones_controller.rb
... | ... | @@ -32,7 +32,7 @@ class MilestonesController < ProjectResourceController |
32 | 32 | |
33 | 33 | def show |
34 | 34 | @issues = @milestone.issues |
35 | - @users = UserDecorator.decorate(@milestone.participants) | |
35 | + @users = UserDecorator.decorate_collection(@milestone.participants) | |
36 | 36 | @merge_requests = @milestone.merge_requests |
37 | 37 | |
38 | 38 | respond_to do |format| | ... | ... |