feat(n8n Form Trigger Node): Add text area and password input types (#7474)

Signed-off-by: yoshino-s <cy-cui@outlook.com>
This commit is contained in:
Yoshino-s
2023-11-01 20:23:28 +08:00
committed by GitHub
parent ce14f6266b
commit b72040aa54
4 changed files with 33 additions and 8 deletions

View File

@@ -106,14 +106,6 @@ export class FormTrigger implements INodeType {
default: 'text',
description: 'The type of field to add to the form',
options: [
{
name: 'Text',
value: 'text',
},
{
name: 'Number',
value: 'number',
},
{
name: 'Date',
value: 'date',
@@ -122,6 +114,22 @@ export class FormTrigger implements INodeType {
name: 'Dropdown List',
value: 'dropdown',
},
{
name: 'Number',
value: 'number',
},
{
name: 'Password',
value: 'password',
},
{
name: 'Text',
value: 'text',
},
{
name: 'Textarea',
value: 'textarea',
},
],
required: true,
},