Fixed padding

pull/330/head
nicolas 2021-06-30 00:50:34 +02:00
parent 88db124f47
commit 8accc3b775
1 changed files with 7 additions and 19 deletions

View File

@ -37,11 +37,8 @@ export default class CalEventParser {
* Returns a footer section with links to change the event (as HTML).
*/
public getChangeEventFooterHtml(): string {
return `
<strong>Need to change this event?</strong>
Cancel: <a href="${this.getCancelLink()}">${this.getCancelLink()}</a>
Reschedule: <a href="${this.getRescheduleLink()}">${this.getRescheduleLink()}</a>
return `<br />
<strong>Need to change this event?</strong><br />Cancel: <a href="${this.getCancelLink()}">${this.getCancelLink()}</a><br />Reschedule: <a href="${this.getRescheduleLink()}">${this.getRescheduleLink()}</a>
`;
}
@ -61,24 +58,15 @@ Reschedule: <a href="${this.getRescheduleLink()}">${this.getRescheduleLink()}</a
// This odd indentation is necessary because otherwise the leading tabs will be applied into the event description.
return (
`
<strong>Event Type:</strong>
${this.calEvent.type}
<strong>Invitee Email:</strong>
<a href="mailto:${this.calEvent.attendees[0].email}">${this.calEvent.attendees[0].email}</a>
<strong>Event Type:</strong><br />${this.calEvent.type}<br />
<strong>Invitee Email:</strong><br /><a href="mailto:${this.calEvent.attendees[0].email}">${this.calEvent.attendees[0].email}</a><br />
` +
(this.calEvent.location
? `<strong>Location:</strong>
${this.calEvent.location}
? `<strong>Location:</strong><br />${this.calEvent.location}<br />
`
: "") +
`<strong>Invitee Time Zone:</strong>
${this.calEvent.attendees[0].timeZone}
<strong>Additional notes:</strong>
${this.calEvent.description}` +
`<strong>Invitee Time Zone:</strong><br />${this.calEvent.attendees[0].timeZone}<br />
<strong>Additional notes:</strong><br />${this.calEvent.description}<br />` +
this.getChangeEventFooterHtml()
);
}