Skip to content

Commit

Permalink
fix(Jira Software Node): Fix issue with not all issue types being sup…
Browse files Browse the repository at this point in the history
…ported (#8571)
  • Loading branch information
Joffcom authored and cstuncsik committed Feb 17, 2024
1 parent 84ff894 commit 2c4acba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nodes-base/nodes/Jira/IssueDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,})',
},
},
],
Expand Down

0 comments on commit 2c4acba

Please sign in to comment.