Commit d7d8edf3cadb9a70db2f354324c18b306d89e91d
1 parent
68a31780
Exists in
master
and in
4 other branches
Fix duplicating participants in milestone
Showing
2 changed files
with
2 additions
and
3 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 = @milestone.participants | |
35 | + @users = @milestone.participants.uniq | |
36 | 36 | @merge_requests = @milestone.merge_requests |
37 | 37 | |
38 | 38 | respond_to do |format| | ... | ... |