Skip to content

Commit c08043b

Browse files
Noémie TAVIEREdevlikepro
Noémie TAVIERE
authored andcommitted
encode name as uri
1 parent 4e2ebed commit c08043b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/n8n/SchemaToINodeProperties.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class N8NINodeProperties {
102102
}
103103
const fieldParameterKeys: Partial<INodeProperties> = {
104104
displayName: lodash.startCase(parameter.name),
105-
name: parameter.name.replace(/\./g, "-"),
105+
name: encodeURIComponent(parameter.name.replace(/\./g, "-")),
106106
required: parameter.required,
107107
description: parameter.description,
108108
default: parameter.example,

0 commit comments

Comments
 (0)