fix(Linear Node): Fix issue creation priority (#6813)

This commit is contained in:
Iván Ovejero
2023-08-01 10:58:37 +02:00
committed by GitHub
parent 803b1521fa
commit fce8cc4275
2 changed files with 15 additions and 6 deletions

View File

@@ -113,10 +113,9 @@ export const issueFields: INodeProperties[] = [
default: '',
},
{
displayName: 'Priority Name/ID',
displayName: 'Priority',
name: 'priorityId',
type: 'options',
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
options: [
{
name: 'Urgent',
@@ -127,12 +126,12 @@ export const issueFields: INodeProperties[] = [
value: 2,
},
{
name: 'Medium',
name: 'Normal',
value: 3,
},
{
name: 'Low',
value: 3,
value: 4,
},
{
name: 'No Priority',