mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
chore: Lintfix nodes-base (#16877)
This commit is contained in:
@@ -5,9 +5,9 @@ import type {
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import { getSites, getCollections, getFields } from '../GenericFunctions';
|
||||
import { router } from './actions/router';
|
||||
import { versionDescription } from './actions/versionDescription';
|
||||
import { getSites, getCollections, getFields } from '../GenericFunctions';
|
||||
|
||||
export class WebflowV2 implements INodeType {
|
||||
description: INodeTypeDescription;
|
||||
|
||||
@@ -76,7 +76,7 @@ export async function execute(
|
||||
let responseData;
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
try {
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
const collectionId = this.getNodeParameter('collectionId', i) as string;
|
||||
const qs: IDataObject = {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user