mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(Jira Software Node): Fix issue with not all issue types being supported (#8571)
This commit is contained in:
parent
ee81015231
commit
a6211c9a5d
|
@ -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,})',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue