Skip to content

Commit

Permalink
fix: ensure timeline obj part ids are unique
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Feb 22, 2024
1 parent 5a905ee commit efc944b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app/src/lib/timeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function sectionToTimelineObj(
if (usePart) {
// Add the part to the timeline:
const obj: TimelineObjEmpty | null = partToTimelineObj(
makeUniqueId(part.part.id),
makeUniqueId(`${id}_${part.part.id}`),
group,
part,
partStartTime,
Expand Down

0 comments on commit efc944b

Please sign in to comment.