fix(n8n Form Trigger Node): Make order of form field name inputs consistent (#18410)

This commit is contained in:
Elias Meire
2025-08-15 15:10:54 +02:00
committed by GitHub
parent 461736dfa7
commit 2203d1e77f

View File

@@ -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',