mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
🐛 Fix bug on n8n Training Customer Datastore Node (#1964)
This commit is contained in:
@@ -147,7 +147,7 @@ export class N8nTrainingCustomerDatastore implements INodeType {
|
||||
responseData = data;
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i) as number;
|
||||
responseData = data.splice(0, limit);
|
||||
responseData = data.slice(0, limit);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user