mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor(nodes-base): Apply lint rule node-param-operation-option-description-wrong-for-get-many (#4064)
* 👕 Enable rule * ⬆️ Upgrade linter * 📦 Update `package-lock.json` * 👕 Apply rule * ✏️ Fix plurals * ✏️ More typos * ✏️ Final typos
This commit is contained in:
@@ -158,7 +158,7 @@ export class Mailchimp implements INodeType {
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all members on list',
|
||||
description: 'Get many members on a list',
|
||||
action: 'Get many members',
|
||||
},
|
||||
{
|
||||
@@ -212,7 +212,7 @@ export class Mailchimp implements INodeType {
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all groups',
|
||||
description: 'Get many groups',
|
||||
action: 'Get many list groups',
|
||||
},
|
||||
],
|
||||
@@ -245,7 +245,7 @@ export class Mailchimp implements INodeType {
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all the campaigns',
|
||||
description: 'Get many campaigns',
|
||||
action: 'Get many campaigns',
|
||||
},
|
||||
{
|
||||
@@ -2192,7 +2192,7 @@ export class Mailchimp implements INodeType {
|
||||
returnData.push(...executionData);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail()) {
|
||||
returnData.push({json:{ error: error.message }});
|
||||
returnData.push({ json: { error: error.message } });
|
||||
continue;
|
||||
}
|
||||
throw error;
|
||||
|
||||
Reference in New Issue
Block a user