This commit is contained in:
Evert Prants 2022-01-04 23:13:55 +02:00
parent ba8c7797b3
commit 67b702f9ff
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 4 additions and 6 deletions

View File

@ -140,13 +140,11 @@ async function generate() {
rows.push(
row.map(
(rowItem) =>
'<tr>' +
(rowItem) => $('tr',
rowItem.map(
(colItem) => `<td>${colItem}</td>`
).join('') +
'</tr>'
).join('')
(colItem) => $('td', colItem)
).join(''))
).join('')
);
}