File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
src/frontend/apps/impress/src/features/docs/doc-export/blocks-mapping Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to
1414- 🐛(docx) fix image overflow by limiting width to 600px during export #1525
1515- 🐛(frontend) preserve @ character when esc is pressed after typing it #1512
1616- 🐛(frontend) fix pdf embed to use full width #1526
17+ - 🐛(pdf) fix table cell alignment issue in exported documents #1582
1718
1819## [ 3.9.0] - 2025-11-10
1920
Original file line number Diff line number Diff line change @@ -103,7 +103,15 @@ export const blockMappingTablePDF: DocsExporterPDF['mappings']['blockMapping']['
103103
104104 return (
105105 < TD key = { colIndex } style = { arrayStyle } >
106- < Text style = { styles . cell } >
106+ < Text
107+ style = { [
108+ styles . cell ,
109+ {
110+ width : '100%' ,
111+ textAlign : cellProps . textAlignment ?? 'left' ,
112+ } ,
113+ ] }
114+ >
107115 { exporter . transformInlineContent ( cell ) }
108116 </ Text >
109117 </ TD >
You can’t perform that action at this time.
0 commit comments