mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(Linear Node): Fix issue creation priority (#6813)
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user