mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Do not assign all paired items (no-changelog) (#11716)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import type { IDataObject, IExecuteFunctions, INode, INodeExecutionData } from 'n8n-workflow';
|
||||
import { NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { generatePairedItemData, wrapData } from '@utils/utilities';
|
||||
import { wrapData } from '@utils/utilities';
|
||||
|
||||
import type { ExcelResponse, SheetData, UpdateSummary } from './interfaces';
|
||||
|
||||
@@ -62,11 +62,7 @@ export function prepareOutput(
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
} else {
|
||||
const itemData = generatePairedItemData(this.getInputData().length);
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
wrapData({ [config.dataProperty || 'data']: responseData }),
|
||||
{ itemData },
|
||||
);
|
||||
const executionData = wrapData({ [config.dataProperty || 'data']: responseData });
|
||||
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user