mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
🐛 Fix wrong default values
This commit is contained in:
parent
4c3750db9f
commit
f4acd47f80
|
@ -73,7 +73,7 @@ export const tableFields = [
|
|||
loadOptionsMethod: 'getTables',
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -153,7 +153,7 @@ export const tableFields = [
|
|||
loadOptionsMethod: 'getTables',
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -223,7 +223,7 @@ export const tableFields = [
|
|||
displayName: 'ValueFormat',
|
||||
name: 'valueFormat',
|
||||
type: 'options',
|
||||
default: [],
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'Simple',
|
||||
|
@ -274,7 +274,7 @@ export const tableFields = [
|
|||
loadOptionsMethod: 'getTables',
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
@ -358,7 +358,7 @@ export const tableFields = [
|
|||
displayName: 'ValueFormat',
|
||||
name: 'valueFormat',
|
||||
type: 'options',
|
||||
default: [],
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'Simple',
|
||||
|
@ -386,7 +386,7 @@ export const tableFields = [
|
|||
displayName: 'Sort By',
|
||||
name: 'sortBy',
|
||||
type: 'options',
|
||||
default: [],
|
||||
default: '',
|
||||
options: [
|
||||
{
|
||||
name: 'Created At',
|
||||
|
@ -441,7 +441,7 @@ export const tableFields = [
|
|||
loadOptionsMethod: 'getTables',
|
||||
},
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
|
|
|
@ -54,7 +54,7 @@ export class EventbriteTrigger implements INodeType {
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getOrganizations'
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
description: '',
|
||||
},
|
||||
{
|
||||
|
@ -65,7 +65,7 @@ export class EventbriteTrigger implements INodeType {
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getEvents'
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
description: '',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -66,7 +66,7 @@ export class FlowTrigger implements INodeType {
|
|||
name: 'listIds',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource:[
|
||||
|
@ -86,7 +86,7 @@ export class FlowTrigger implements INodeType {
|
|||
name: 'taskIds',
|
||||
type: 'string',
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource:[
|
||||
|
|
|
@ -107,7 +107,7 @@ export const taskFields = [
|
|||
displayName: 'List ID',
|
||||
name: 'listID',
|
||||
type: 'string',
|
||||
default: [],
|
||||
default: '',
|
||||
required : false,
|
||||
description: 'Put the new task in a list ("project"). Omit this param to have the task be private.',
|
||||
},
|
||||
|
|
|
@ -776,7 +776,7 @@ export class GoogleDrive implements INodeType {
|
|||
},
|
||||
],
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
description: 'The corpora to operate on.',
|
||||
},
|
||||
{
|
||||
|
|
|
@ -135,7 +135,7 @@ export const dealFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getDealTypes',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Associated Company',
|
||||
|
@ -209,7 +209,7 @@ export const dealFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getDealStages'
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
description: 'The dealstage is required when creating a deal. See the CRM Pipelines API for details on managing pipelines and stages.',
|
||||
},
|
||||
{
|
||||
|
@ -243,7 +243,7 @@ export const dealFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getDealTypes',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
},
|
||||
]
|
||||
},
|
||||
|
|
|
@ -160,7 +160,7 @@ export const issueFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getPriorities',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
required : false,
|
||||
description: 'Priority',
|
||||
},
|
||||
|
@ -171,7 +171,7 @@ export const issueFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
required : false,
|
||||
description: 'Assignee',
|
||||
},
|
||||
|
@ -278,7 +278,7 @@ export const issueFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getPriorities',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
required : false,
|
||||
description: 'Priority',
|
||||
},
|
||||
|
@ -289,7 +289,7 @@ export const issueFields = [
|
|||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
required : false,
|
||||
description: 'Assignee',
|
||||
},
|
||||
|
|
|
@ -55,7 +55,7 @@ export class MailchimpTrigger implements INodeType {
|
|||
name: 'list',
|
||||
type: 'options',
|
||||
required: true,
|
||||
default: [],
|
||||
default: '',
|
||||
description: 'The list that is gonna fire the event.',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getLists'
|
||||
|
|
|
@ -104,7 +104,7 @@ export class Todoist implements INodeType {
|
|||
]
|
||||
},
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
description: 'The project you want to add the task to.',
|
||||
},
|
||||
{
|
||||
|
@ -145,7 +145,7 @@ export class Todoist implements INodeType {
|
|||
]
|
||||
},
|
||||
},
|
||||
default: [],
|
||||
default: '',
|
||||
required: true,
|
||||
description: 'Task content',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue