fix(Date & Time Node): Reset responseData at end of loop (#6385)

reset responseData at end of loop
This commit is contained in:
Michael Auerswald
2023-06-06 20:58:15 +02:00
committed by GitHub
parent 05c4229cd7
commit eaa8648f2b

View File

@@ -204,6 +204,8 @@ export class DateTimeV2 implements INodeType {
},
);
returnData.push(...executionData);
// Reset responseData
responseData.length = 0;
}
return this.prepareOutputData(returnData);
}