From dfd7b1da5c52ca9bd9c03b801e0a45a5f3233847 Mon Sep 17 00:00:00 2001 From: NguyenND Date: Sat, 28 Feb 2026 19:18:29 -0500 Subject: [PATCH] Feb 02 2026: change export file format 3 --- app/utils/pdf_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/pdf_export.py b/app/utils/pdf_export.py index 3bdb65f..c9900c9 100644 --- a/app/utils/pdf_export.py +++ b/app/utils/pdf_export.py @@ -473,7 +473,7 @@ def _form_fields_section(form_fields, form_data, static_folder): if not cells: continue - row_tbl = Table([cells], colWidths=col_widths) + row_tbl = Table([cells], colWidths=col_widths, hAlign='LEFT') row_tbl.setStyle(TableStyle([ ('VALIGN', (0, 0), (-1, -1), 'TOP'), ('LEFTPADDING', (0, 0), (-1, -1), 2),