We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bb5ed1 commit 670918fCopy full SHA for 670918f
1 file changed
src/Calendars/Event.tsx
@@ -35,7 +35,7 @@ class Event extends React.PureComponent {
35
<div><u>{this.props.item.location}</u></div>
36
</PimItemHeader>
37
<div style={style.content}>
38
- <p style={{ wordWrap: "break-word" }}>{this.props.item.description}</p>
+ <p style={{ wordWrap: "break-word", whiteSpace: "pre-wrap" }}>{this.props.item.description}</p>
39
{(this.props.item.attendees.length > 0) && (
40
<div>Attendees: {this.props.item.attendees.map((x) => (x.getFirstValue())).join(", ")}</div>)}
41
</div>
0 commit comments