mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core): Missing pairing info (#7326)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
@@ -9,7 +9,7 @@ import unset from 'lodash/unset';
|
||||
import { cloneDeep } from 'lodash';
|
||||
import set from 'lodash/set';
|
||||
import union from 'lodash/union';
|
||||
import { fuzzyCompare } from '@utils/utilities';
|
||||
import { fuzzyCompare, preparePairedItemDataArray } from '@utils/utilities';
|
||||
|
||||
type PairToMatch = {
|
||||
field1: string;
|
||||
@@ -141,6 +141,10 @@ function compareItems(
|
||||
|
||||
return {
|
||||
json: { keys, same, different, ...(!isEmpty(skipped) && { skipped }) },
|
||||
pairedItem: [
|
||||
...preparePairedItemDataArray(item1.pairedItem),
|
||||
...preparePairedItemDataArray(item2.pairedItem),
|
||||
],
|
||||
} as INodeExecutionData;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user