mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix(n8n Form Trigger Node): Fix missing options when using respond to webhook (#9282)
This commit is contained in:
parent
ff0955c995
commit
6ab3781570
|
@ -76,11 +76,6 @@ const descriptionV2: INodeTypeDescription = {
|
|||
type: 'collection',
|
||||
placeholder: 'Add Option',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
hide: {
|
||||
responseMode: ['responseNode'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased
|
||||
|
@ -91,7 +86,14 @@ const descriptionV2: INodeTypeDescription = {
|
|||
description:
|
||||
'Whether to include the link “Form automated with n8n” at the bottom of the form',
|
||||
},
|
||||
respondWithOptions,
|
||||
{
|
||||
...respondWithOptions,
|
||||
displayOptions: {
|
||||
hide: {
|
||||
'/responseMode': ['responseNode'],
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue