File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -424,8 +424,8 @@ const AssignUnassignEventView = ({ event }: { event: AssignEvent | UnassignEvent
424424 const { actor } = event ;
425425 const assignees = ( event as AssignEvent ) . assignees || [ ] ;
426426 const unassignees = ( event as UnassignEvent ) . unassignees || [ ] ;
427- const joinedAssignees = joinWithAnd ( assignees . map ( a => < AuthorLink key = { a . id } for = { a } /> ) ) ;
428- const joinedUnassignees = joinWithAnd ( unassignees . map ( a => < AuthorLink key = { a . id } for = { a } /> ) ) ;
427+ const joinedAssignees = joinWithAnd ( assignees . map ( a => < AuthorLink key = { ` ${ a . id } a` } for = { a } /> ) ) ;
428+ const joinedUnassignees = joinWithAnd ( unassignees . map ( a => < AuthorLink key = { ` ${ a . id } u` } for = { a } /> ) ) ;
429429
430430 let message : JSX . Element ;
431431 if ( assignees . length > 0 && unassignees . length > 0 ) {
You can’t perform that action at this time.
0 commit comments