mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(HTML Node): Fix typo preventing row attributes from being set in tables (#9440)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user