From 670918f8f7d6f02693f61cffffd681f74810e60d Mon Sep 17 00:00:00 2001 From: Jonathan Zacsh Date: Fri, 24 Jun 2022 03:34:19 -0500 Subject: [PATCH] fix event descriptions to respect whitespace (#234) --- src/Calendars/Event.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Calendars/Event.tsx b/src/Calendars/Event.tsx index bddd33e..a1fe1d4 100644 --- a/src/Calendars/Event.tsx +++ b/src/Calendars/Event.tsx @@ -35,7 +35,7 @@ class Event extends React.PureComponent {
{this.props.item.location}
-

{this.props.item.description}

+

{this.props.item.description}

{(this.props.item.attendees.length > 0) && (
Attendees: {this.props.item.attendees.map((x) => (x.getFirstValue())).join(", ")}
)}