Skip to content

Commit

Permalink
Better template ID tracking for team planner
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverguenther committed Mar 7, 2022
1 parent aa64ec1 commit 40f51a9
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,13 @@ export class TeamPlannerComponent extends UntilDestroyedMixin implements OnInit,
}

eventId(data:EventContentArg):string {
return `${data.event.id},dragging=${data.isDragging.toString()}`;
return [
data.event.id,
data.event.start?.toISOString(),
data.event.end?.toISOString(),
data.timeText,
`dragging=${data.isDragging.toString()}`,
].join('-');
}

public showAssigneeAddRow():void {
Expand Down

0 comments on commit 40f51a9

Please sign in to comment.