Fixed padding

This commit is contained in:
nicolas 2021-06-30 00:53:37 +02:00
parent 8accc3b775
commit 313ee0376e

View file

@ -38,7 +38,9 @@ export default class CalEventParser {
*/ */
public getChangeEventFooterHtml(): string { public getChangeEventFooterHtml(): string {
return `<br /> 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> <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>
`; `;
} }