From a513b392a1a9095e331061ecd640f2615abea7b5 Mon Sep 17 00:00:00 2001 From: Vishal Rathod Date: Sun, 5 Oct 2025 11:46:33 +0000 Subject: [PATCH] fix: cell function now properly accepts align parameter - Fixed missing align parameter (arguments[6]) in Cell constructor call - The cell function was documented to accept 7 parameters including align - Previously only 6 parameters were passed, causing alignment to be ignored - Now alignment works correctly for 'left', 'center', and 'right' values - All existing tests continue to pass --- src/modules/cell.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/cell.js b/src/modules/cell.js index 6ddaafeb1..df3de6516 100644 --- a/src/modules/cell.js +++ b/src/modules/cell.js @@ -278,7 +278,8 @@ import { jsPDF } from "../jspdf.js"; arguments[2], arguments[3], arguments[4], - arguments[5] + arguments[5], + arguments[6] ); } _initialize.call(this);