diff --git a/artifacts/api-server/src/lib/pdf-html-renderer.ts b/artifacts/api-server/src/lib/pdf-html-renderer.ts index 273d0dce..08ad9eff 100644 --- a/artifacts/api-server/src/lib/pdf-html-renderer.ts +++ b/artifacts/api-server/src/lib/pdf-html-renderer.ts @@ -219,8 +219,8 @@ function buildMeetingRow(meeting: PdfMeeting, input: RenderPdfInput): string { const cellsLtr: TableCell[] = [ { html: esc(String(meeting.dailyNumber)), cls: "num-cell", style: coloredStyle }, { html: esc(title) + location, cls: "meeting-cell", style: coloredStyle }, - { html: attendeesHtml, cls: "attendees-cell", style: coloredStyle }, - { html: `${esc(time)}`, cls: "time-cell", style: coloredStyle }, + { html: attendeesHtml, cls: "attendees-cell", style: "" }, + { html: `${esc(time)}`, cls: "time-cell", style: "" }, ]; const renderCells = (cells: TableCell[], allColored: boolean): string => diff --git a/artifacts/tx-os/src/pages/executive-meetings.tsx b/artifacts/tx-os/src/pages/executive-meetings.tsx index 8ac145ad..941308a3 100644 --- a/artifacts/tx-os/src/pages/executive-meetings.tsx +++ b/artifacts/tx-os/src/pages/executive-meetings.tsx @@ -3636,9 +3636,9 @@ function MeetingRow({ isCurrent && !(highlight || isCancelled) ? hexToRgba(highlightColor, 0.13) : null; - const tintedCellStyle = (col: ColumnSetting, applyRowBg = false): CSSProperties => { - const bg = tintBg || (applyRowBg && rowBg) || undefined; - const bc = rowBorder || undefined; + const tintedCellStyle = (col: ColumnSetting, applyRowColor = false): CSSProperties => { + const bg = tintBg || (applyRowColor && rowBg) || undefined; + const bc = (applyRowColor && rowBorder) || undefined; if (bg || bc) { return { ...cellStyle(col), ...(bg ? { backgroundColor: bg } : null), ...(bc ? { borderColor: bc } : null) }; } @@ -3801,7 +3801,7 @@ function MeetingRow({