mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(HTML Node): Add pairedItem support for 'Convert to HTML Table' operation (#7196)
Github issue / Community forum post (link here to close automatically): Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -411,7 +411,16 @@ export class Html implements INodeType {
|
|||||||
table += '</tbody>';
|
table += '</tbody>';
|
||||||
table += '</table>';
|
table += '</table>';
|
||||||
|
|
||||||
return [[{ json: { table } }]];
|
return [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
json: { table },
|
||||||
|
pairedItem: items.map((_item, index) => ({
|
||||||
|
item: index,
|
||||||
|
})),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
let item: INodeExecutionData;
|
let item: INodeExecutionData;
|
||||||
|
|||||||
Reference in New Issue
Block a user