mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix: Fix issue with required optional parameters (#3597)
* Fixed issue with Reddit node not getting all posts * Fixed remaining issues with required options
This commit is contained in:
parent
32f245da53
commit
848fcfde5d
|
@ -200,7 +200,6 @@ export const conversationMessageFields: INodeProperties[] = [
|
||||||
name: 'written_by_me',
|
name: 'written_by_me',
|
||||||
description: 'Author of the message',
|
description: 'Author of the message',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
|
||||||
default: true,
|
default: true,
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1126,7 +1126,6 @@ export class Pipedrive implements INodeType {
|
||||||
name: 'org_id',
|
name: 'org_id',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 0,
|
default: 0,
|
||||||
required: true,
|
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
'/associateWith': [
|
'/associateWith': [
|
||||||
|
@ -1731,7 +1730,6 @@ export class Pipedrive implements INodeType {
|
||||||
numberPrecision: 2,
|
numberPrecision: 2,
|
||||||
},
|
},
|
||||||
default: 0.00,
|
default: 0.00,
|
||||||
required: true,
|
|
||||||
description: 'Price at which to add or update this product in a deal',
|
description: 'Price at which to add or update this product in a deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1742,7 +1740,6 @@ export class Pipedrive implements INodeType {
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 1,
|
||||||
},
|
},
|
||||||
required: true,
|
|
||||||
description: 'How many items of this product to add/update in a deal',
|
description: 'How many items of this product to add/update in a deal',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -329,7 +329,6 @@ export const postFields: INodeProperties[] = [
|
||||||
displayName: 'Category',
|
displayName: 'Category',
|
||||||
name: 'category',
|
name: 'category',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
required: true,
|
|
||||||
default: 'top',
|
default: 'top',
|
||||||
description: 'Category of the posts to retrieve',
|
description: 'Category of the posts to retrieve',
|
||||||
options: [
|
options: [
|
||||||
|
|
|
@ -291,7 +291,6 @@ export const userFields: INodeProperties[] = [
|
||||||
name: 'roles',
|
name: 'roles',
|
||||||
type: 'multiOptions',
|
type: 'multiOptions',
|
||||||
description: 'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
description: 'Comma-separated list of roles to assign to the user. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||||
required: true,
|
|
||||||
default: [],
|
default: [],
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
loadOptionsMethod: 'getRoles',
|
loadOptionsMethod: 'getRoles',
|
||||||
|
|
|
@ -541,7 +541,6 @@ export class Wait implements INodeType {
|
||||||
name: 'binaryPropertyName',
|
name: 'binaryPropertyName',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'data',
|
default: 'data',
|
||||||
required: true,
|
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
binaryData: [
|
binaryData: [
|
||||||
|
|
Loading…
Reference in a new issue