imported table width

This commit is contained in:
Salihu
2026-08-27 21:12:38 +01:00
parent 24b81ab9af
commit e175242748
@@ -85,7 +85,7 @@ export function normalizeTableColumnWidths(
firstRow.children('td, th').each(function () { firstRow.children('td, th').each(function () {
count += parseInt($(this).attr('colspan') || '1', 10) || 1; count += parseInt($(this).attr('colspan') || '1', 10) || 1;
}); });
if (count < 5) return; if (count < 6) return;
colWidths = new Array(count).fill(DEFAULT_IMPORT_COL_WIDTH_PX); colWidths = new Array(count).fill(DEFAULT_IMPORT_COL_WIDTH_PX);
} }