Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Table header aligns always left
  • Loading branch information
mojtaba-khallash authored Dec 10, 2020
commit 6ba770b684f6337fd30e116b2c5869e466f8c205
2 changes: 1 addition & 1 deletion src/modules/cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ import { jsPDF } from "../jspdf.js";
headerLabels = headers.map(function(header) {
return header.prompt || header.name || "";
});
headerAligns = headerNames.map(function(header) {
headerAligns = headers.map(function(header) {
return header.align || "left";
});
// Split header configs into names and prompts
Expand Down