Skip to content

Commit 57b2e89

Browse files
Copilotalexr00
andauthored
Fix assignment event time inconsistency with GitHub.com (#7061)
* Initial plan for issue * Fix assignment event time consolidation to match GitHub.com behavior Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> * Remove comment from assignment event consolidation Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
1 parent 25a1a1e commit 57b2e89

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

webviews/components/timeline.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export const Timeline = ({ events, isIssue }: { events: TimelineEvent[], isIssue
5959
const newUnassignees = newEvent.unassignees?.filter(a => !unassignees.some(b => b.id === a.id)) ?? [];
6060
lastEvent.assignees = [...assignees, ...newAssignees];
6161
lastEvent.unassignees = [...unassignees, ...newUnassignees];
62-
lastEvent.createdAt = newEvent.createdAt;
6362
} else {
6463
consolidatedEvents.push(newEvent);
6564
}

0 commit comments

Comments
 (0)