mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(Jira Software Node): Fix issue with not all issue types being supported (#8571)
This commit is contained in:
@@ -141,14 +141,14 @@ export const issueFields: INodeProperties[] = [
|
||||
{
|
||||
type: 'regex',
|
||||
properties: {
|
||||
regex: '([0-9]{2,})[ \t]*',
|
||||
regex: '([0-9]{1,})[ \t]*',
|
||||
errorMessage: 'Not a valid Jira Issue Type ID',
|
||||
},
|
||||
},
|
||||
],
|
||||
extractValue: {
|
||||
type: 'regex',
|
||||
regex: '^([0-9]{2,})',
|
||||
regex: '^([0-9]{1,})',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user