Add event description to PDF

Fixes a bug where the event name was printed twice in the PDF header
This commit is contained in:
Sean Engelhardt 2019-12-04 15:37:38 +01:00
parent 60e3282286
commit ae62fd69f5
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ export class PdfDocumentService {
text = '';
} else {
const general_event_name = this.configService.instant<string>('general_event_name');
const general_event_description = this.configService.instant<string>('general_event_name');
const general_event_description = this.configService.instant<string>('general_event_description');
const line1 = [
this.translate.instant(general_event_name),
this.translate.instant(general_event_description)