diff --git a/admin-lehrer/components/ocr-kombi/SpreadsheetView.tsx b/admin-lehrer/components/ocr-kombi/SpreadsheetView.tsx index 8da3189..5079890 100644 --- a/admin-lehrer/components/ocr-kombi/SpreadsheetView.tsx +++ b/admin-lehrer/components/ocr-kombi/SpreadsheetView.tsx @@ -85,7 +85,13 @@ function zoneToSheet(zone: GridZone, sheetIndex: number, isFirst: boolean): any } // Multi-line text (bullets with \n): enable text wrap + vertical top align - if (text.includes('\n')) { + // Add bullet marker (•) if multi-line and no bullet present + if (text.includes('\n') && !isHeader) { + if (!text.startsWith('•') && !text.startsWith('-') && !text.startsWith('–') && r > 0) { + text = '• ' + text + v.v = text + v.m = text + } v.tb = '2' // text wrap v.vt = 0 // vertical align: top }