2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00
This commit is contained in:
n1474335
2023-03-23 17:53:31 +00:00

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";