mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix: correct all the spelling typos (#3960)
* Improve code health Fix TS typos in local variables Fix CSS typos in local styles Fix typos in comments Fix typos in strings * Fix order of n8n setup sections in CONTRIBUTING.md
This commit is contained in:
@@ -799,7 +799,7 @@ export class HttpRequest implements INodeType {
|
||||
},
|
||||
queryParametersJson: {
|
||||
name: 'qs',
|
||||
displayName: 'Query Paramters',
|
||||
displayName: 'Query Parameters',
|
||||
},
|
||||
};
|
||||
let returnItems: INodeExecutionData[] = [];
|
||||
@@ -885,7 +885,7 @@ export class HttpRequest implements INodeType {
|
||||
const contentTypesAllowed = ['raw', 'multipart-form-data'];
|
||||
|
||||
if (!contentTypesAllowed.includes(options.bodyContentType as string)) {
|
||||
// As n8n-workflow.NodeHelpers.getParamterResolveOrder can not be changed
|
||||
// As n8n-workflow.NodeHelpers.getParameterResolveOrder can not be changed
|
||||
// easily to handle parameters in dot.notation simply error for now.
|
||||
throw new NodeOperationError(
|
||||
this.getNode(),
|
||||
@@ -972,7 +972,7 @@ export class HttpRequest implements INodeType {
|
||||
}
|
||||
|
||||
if (tempValue === '') {
|
||||
// Paramter is empty so skip it
|
||||
// Parameter is empty so skip it
|
||||
continue;
|
||||
}
|
||||
|
||||
@@ -998,7 +998,7 @@ export class HttpRequest implements INodeType {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Paramters are defined in UI
|
||||
// Parameters are defined in UI
|
||||
let optionName: string;
|
||||
for (const parameterName of Object.keys(uiParameters)) {
|
||||
setUiParameter = this.getNodeParameter(parameterName, itemIndex, {}) as IDataObject;
|
||||
|
||||
Reference in New Issue
Block a user