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( rows.push(
row.map( row.map(
(rowItem) => (rowItem) => $('tr',
'<tr>' +
rowItem.map( rowItem.map(
(colItem) => `<td>${colItem}</td>` (colItem) => $('td', colItem)
).join('') + ).join(''))
'</tr>' ).join('')
).join('')
); );
} }