diff --git a/client/src/app/site/motions/services/motion-pdf.service.ts b/client/src/app/site/motions/services/motion-pdf.service.ts index 346d65167..e8b09b300 100644 --- a/client/src/app/site/motions/services/motion-pdf.service.ts +++ b/client/src/app/site/motions/services/motion-pdf.service.ts @@ -115,7 +115,8 @@ export class MotionPdfService { } const title = this.createTitle(motion, crMode, lineLength); - const sequential = !infoToExport || infoToExport.includes('id'); + const sequential = + infoToExport?.includes('id') ?? this.configService.instant('motions_show_sequential_numbers'); const subtitle = this.createSubtitle(motion, sequential); motionPdfContent = [title, subtitle];