mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
🐛 Fix Stripe pagination (#2402)
* Fix Stripe pagination * Fix displayOptions for type
This commit is contained in:
@@ -255,7 +255,7 @@ export class Stripe implements INodeType {
|
||||
// charge: getAll
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await handleListing.call(this, resource);
|
||||
responseData = await handleListing.call(this, resource, i);
|
||||
|
||||
} else if (operation === 'update') {
|
||||
|
||||
@@ -313,7 +313,7 @@ export class Stripe implements INodeType {
|
||||
// coupon: getAll
|
||||
// ----------------------------------
|
||||
|
||||
responseData = await handleListing.call(this, resource);
|
||||
responseData = await handleListing.call(this, resource, i);
|
||||
|
||||
}
|
||||
|
||||
@@ -374,7 +374,7 @@ export class Stripe implements INodeType {
|
||||
qs.email = filters.email;
|
||||
}
|
||||
|
||||
responseData = await handleListing.call(this, resource, qs);
|
||||
responseData = await handleListing.call(this, resource, i, qs);
|
||||
|
||||
} else if (operation === 'update') {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user