From 2203d1e77f321b0c1bf9bd4d8915865331f5a66c Mon Sep 17 00:00:00 2001 From: Elias Meire Date: Fri, 15 Aug 2025 15:10:54 +0200 Subject: [PATCH] fix(n8n Form Trigger Node): Make order of form field name inputs consistent (#18410) --- .../nodes/Form/common.descriptions.ts | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/nodes-base/nodes/Form/common.descriptions.ts b/packages/nodes-base/nodes/Form/common.descriptions.ts index b50651beee..ffec13134e 100644 --- a/packages/nodes-base/nodes/Form/common.descriptions.ts +++ b/packages/nodes-base/nodes/Form/common.descriptions.ts @@ -70,6 +70,19 @@ export const formFields: INodeProperties = { }, }, }, + { + displayName: 'Field Name', + name: 'fieldName', + description: + 'The name of the field, used in input attributes and referenced by the workflow', + type: 'string', + default: '', + displayOptions: { + show: { + fieldType: ['hiddenField'], + }, + }, + }, { displayName: 'Element Type', name: 'fieldType', @@ -153,19 +166,6 @@ export const formFields: INodeProperties = { }, }, }, - { - displayName: 'Field Name', - name: 'fieldName', - description: - 'The name of the field, used in input attributes and referenced by the workflow', - type: 'string', - default: '', - displayOptions: { - show: { - fieldType: ['hiddenField'], - }, - }, - }, { displayName: 'Field Value', name: 'fieldValue',