From 7568071334f939e5383500d6bbaa30dc4565c15d Mon Sep 17 00:00:00 2001 From: nicolas Date: Wed, 30 Jun 2021 00:11:16 +0200 Subject: [PATCH] removed div --- lib/CalEventParser.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/CalEventParser.ts b/lib/CalEventParser.ts index 5261a12023..3c1f246692 100644 --- a/lib/CalEventParser.ts +++ b/lib/CalEventParser.ts @@ -61,7 +61,6 @@ export default class CalEventParser { public getRichDescriptionHtml(): string { return ( ` -
Event Type:
${this.calEvent.type}

@@ -81,10 +80,7 @@ export default class CalEventParser { Additional notes:
${this.calEvent.description} ` + - this.getChangeEventFooterHtml() + - ` -
- ` + this.getChangeEventFooterHtml() ); }