mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11: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',
|
type: 'regex',
|
||||||
properties: {
|
properties: {
|
||||||
regex: '([0-9]{2,})[ \t]*',
|
regex: '([0-9]{1,})[ \t]*',
|
||||||
errorMessage: 'Not a valid Jira Issue Type ID',
|
errorMessage: 'Not a valid Jira Issue Type ID',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
extractValue: {
|
extractValue: {
|
||||||
type: 'regex',
|
type: 'regex',
|
||||||
regex: '^([0-9]{2,})',
|
regex: '^([0-9]{1,})',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user