diff --git a/artifacts/api-server/src/lib/pdf-html-renderer.ts b/artifacts/api-server/src/lib/pdf-html-renderer.ts index 48f1208e..3cc140f1 100644 --- a/artifacts/api-server/src/lib/pdf-html-renderer.ts +++ b/artifacts/api-server/src/lib/pdf-html-renderer.ts @@ -249,8 +249,8 @@ function buildMeetingRow(meeting: PdfMeeting, input: RenderPdfInput): string { const cellsLtr: TableCell[] = [ { html: esc(String(meeting.dailyNumber)), cls: "num-cell", style: numDarkStyle }, { html: titleHtml + location, cls: "meeting-cell", style: coloredStyle }, - { html: attendeesHtml, cls: "attendees-cell", style: "" }, - { html: `${esc(time)}`, cls: "time-cell", style: "" }, + { html: attendeesHtml, cls: "attendees-cell", style: coloredStyle }, + { html: `${esc(time)}`, cls: "time-cell", style: coloredStyle }, ]; const renderCells = (cells: TableCell[], allColored: boolean): string => @@ -428,7 +428,6 @@ tr { .num-cell { text-align: center; vertical-align: middle; - font-weight: bold; } .meeting-cell {