Use HTML to allow line breaks in outlook

This commit is contained in:
nicolas 2021-06-29 23:47:50 +02:00
parent 098b95ef55
commit f91fdd16cf

View file

@ -102,7 +102,7 @@ export default class CalEventParser {
*/
public asRichEvent(): CalendarEvent {
const eventCopy: CalendarEvent = { ...this.calEvent };
eventCopy.description = this.getRichDescription();
eventCopy.description = this.getRichDescriptionHtml();
return eventCopy;
}
}