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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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