Skip to content
Snippets Groups Projects
Commit d7d8edf3 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix duplicating participants in milestone

parent 68a31780
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -32,7 +32,7 @@ class MilestonesController < ProjectResourceController
 
def show
@issues = @milestone.issues
@users = @milestone.participants
@users = @milestone.participants.uniq
@merge_requests = @milestone.merge_requests
 
respond_to do |format|
Loading
Loading
Loading
Loading
@@ -87,7 +87,6 @@
%h6 Participants:
%div
- @users.each do |user|
= link_to user do
= link_to_member(@project, user)
= link_to_member(@project, user)
 
.clearfix
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment