mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor(core): Deprecate prepareOutputData (no-changelog) (#7091)
This commit is contained in:
committed by
GitHub
parent
c04a996fb4
commit
6aa7b93473
@@ -411,7 +411,7 @@ export class Html implements INodeType {
|
||||
table += '</tbody>';
|
||||
table += '</table>';
|
||||
|
||||
return this.prepareOutputData([{ json: { table } }]);
|
||||
return [[{ json: { table } }]];
|
||||
}
|
||||
|
||||
let item: INodeExecutionData;
|
||||
@@ -528,6 +528,6 @@ export class Html implements INodeType {
|
||||
}
|
||||
}
|
||||
|
||||
return this.prepareOutputData(returnData);
|
||||
return [returnData];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user