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,7 +32,7 @@ class MilestonesController < ProjectResourceController | ||
32 | 32 | ||
33 | def show | 33 | def show |
34 | @issues = @milestone.issues | 34 | @issues = @milestone.issues |
35 | - @users = @milestone.participants | 35 | + @users = @milestone.participants.uniq |
36 | @merge_requests = @milestone.merge_requests | 36 | @merge_requests = @milestone.merge_requests |
37 | 37 | ||
38 | respond_to do |format| | 38 | respond_to do |format| |
app/views/milestones/show.html.haml