This commit is contained in:
n1474335 2023-03-23 17:53:31 +00:00
commit 1632e23c78
No known key found for this signature in database
GPG Key ID: D15457B7B4AF3F37
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ class ToTable extends Operation {
output += outputRow(row, longestCells);
let rowOutput = verticalBorder;
row.forEach(function(cell, index) {
rowOutput += " " + headerDivider + " " + verticalBorder;
rowOutput += " " + headerDivider.repeat(longestCells[index]) + " " + verticalBorder;
});
output += rowOutput += "\n";