Apply row styling only to meeting number and title columns

Removes row background and border styling from the attendees and time columns in the PDF renderer and the web interface. Adjusts the `tintedCellStyle` function to conditionally apply border styling based on `applyRowColor` flag.
This commit is contained in:
Riyadh
2026-05-04 14:11:15 +00:00
parent 365f8137c2
commit 7d369efbf8
2 changed files with 7 additions and 7 deletions
@@ -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: `<span dir="ltr">${esc(time)}</span>`, cls: "time-cell", style: coloredStyle },
{ html: attendeesHtml, cls: "attendees-cell", style: "" },
{ html: `<span dir="ltr">${esc(time)}</span>`, cls: "time-cell", style: "" },
];
const renderCells = (cells: TableCell[], allColored: boolean): string =>