Skip to content

Commit

Permalink
fix: save occurrenceUid if set
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Jun 11, 2024
1 parent 85f2f69 commit 40f2736
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/user-area/pages/new-event/new-event.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ export class NewEventComponent implements OnInit {
end: [occurrence.end],
isAllDay: [occurrence.isAllDay],
isCancelled: [occurrence.isCancelled],
occurrenceUid: [occurrence.occurrenceUid],
});
this.eventOccurrencesFormArray.push(o);
this.setAllDayFields(idx);
Expand Down Expand Up @@ -404,6 +405,7 @@ export class NewEventComponent implements OnInit {
end: occurrence.end,
isAllDay: occurrence.isAllDay,
isCancelled: occurrence.isCancelled,
occurrenceUid: occurrence.occurrenceUid,
});
});
return dto;
Expand Down

0 comments on commit 40f2736

Please sign in to comment.