Skip to content

Commit

Permalink
fix(n8n Form Trigger Node): Fix missing options when using respond to…
Browse files Browse the repository at this point in the history
… webhook (#9282)
  • Loading branch information
Joffcom authored May 3, 2024
1 parent ff0955c commit 6ab3781
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions packages/nodes-base/nodes/Form/v2/FormTriggerV2.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'],
},
},
},
],
},
],
Expand Down

0 comments on commit 6ab3781

Please sign in to comment.