mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core): Missing pairedItem fixes (#8394)
This commit is contained in:
@@ -530,7 +530,7 @@ export class Redis implements INodeType {
|
||||
|
||||
let item: INodeExecutionData;
|
||||
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
||||
item = { json: {} };
|
||||
item = { json: {}, pairedItem: { item: itemIndex } };
|
||||
|
||||
if (operation === 'delete') {
|
||||
const keyDelete = this.getNodeParameter('key', itemIndex) as string;
|
||||
|
||||
Reference in New Issue
Block a user