Skip to content
This repository has been archived by the owner on Feb 26, 2023. It is now read-only.

Commit

Permalink
fix event names
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasptsch committed Jan 15, 2023
1 parent fb8c71c commit 90f3c44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/calendar/calendar.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ export class CalendarService {
events: events.map((event) => {
return {
start: event.startDate,
summary: event.title,
end: event.endDate,
description: event.title,
description: event.description,
allDay: event.allDay,
attendees: event.RSVP.map((rsvp) => {
const status: ICalAttendeeStatus =
Expand Down

0 comments on commit 90f3c44

Please sign in to comment.