fix(Jira Software Node): Fix issue with not all issue types being supported (#8571)

This commit is contained in:
Jon 2024-02-12 08:49:13 +00:00 committed by GitHub
parent ee81015231
commit a6211c9a5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,})',
}, },
}, },
], ],