fix(HTML Node): Fix typo preventing row attributes from being set in tables (#9440)

This commit is contained in:
Jon
2024-05-17 11:51:22 +01:00
committed by GitHub
parent 2782534d78
commit 28e3e21177

View File

@@ -427,7 +427,7 @@ export class Html implements INodeType {
table += '<tbody>'; table += '<tbody>';
itemsData.forEach((entry, entryIndex) => { itemsData.forEach((entry, entryIndex) => {
const rowsAttributes = this.getNodeParameter( const rowsAttributes = this.getNodeParameter(
'options.rowsAttributes', 'options.rowAttributes',
entryIndex, entryIndex,
'', '',
) as string; ) as string;