mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Date & Time Node): Reset responseData at end of loop (#6385)
reset responseData at end of loop
This commit is contained in:
parent
05c4229cd7
commit
eaa8648f2b
|
@ -204,6 +204,8 @@ export class DateTimeV2 implements INodeType {
|
|||
},
|
||||
);
|
||||
returnData.push(...executionData);
|
||||
// Reset responseData
|
||||
responseData.length = 0;
|
||||
}
|
||||
return this.prepareOutputData(returnData);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue