refactor(core): Deprecate prepareOutputData (no-changelog) (#7091)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-09-05 12:59:02 +02:00
committed by GitHub
parent c04a996fb4
commit 6aa7b93473
241 changed files with 331 additions and 379 deletions

View File

@@ -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];
}
}