mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
🔀 Merge branch 'fixes_description_field' of https://github.com/mtahiue/n8n into mtahiue-fixes_description_field
This commit is contained in:
commit
2234f9f0c7
|
@ -241,7 +241,7 @@ export class Gitlab implements INodeType {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Body',
|
displayName: 'Body',
|
||||||
name: 'body',
|
name: 'description',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
rows: 5,
|
rows: 5,
|
||||||
|
@ -317,7 +317,31 @@ export class Gitlab implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Due Date',
|
||||||
|
name: 'date_date',
|
||||||
|
type: 'string',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'create',
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'issue',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: { 'due_date': '' },
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Due Date',
|
||||||
|
name: 'date_date',
|
||||||
|
type: 'string',
|
||||||
|
default: 0,
|
||||||
|
description: 'Due Date for issue. Date time string in the format YEAR-MONTH-DAY, e.g. 2016-03-11',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
// issue:createComment
|
// issue:createComment
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
@ -409,7 +433,7 @@ export class Gitlab implements INodeType {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Body',
|
displayName: 'Body',
|
||||||
name: 'body',
|
name: 'description',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
rows: 5,
|
rows: 5,
|
||||||
|
@ -474,6 +498,13 @@ export class Gitlab implements INodeType {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Due Date',
|
||||||
|
name: 'due_date',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The Due Date of the issue. Date time string in the format YEAR-MONTH-DAY, e.g. 2016-03-11',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue