🐛 Fix custom fields for Jira Server (#2347)

This commit is contained in:
pemontto 2021-10-21 04:14:58 +01:00 committed by GitHub
parent 3898b86cc9
commit 2e49c4c1cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -378,7 +378,7 @@ export class Jira implements INodeType {
if (field.schema && Object.keys(field.schema).includes('customId')) {
returnData.push({
name: field.name,
value: field.key,
value: field.key || field.fieldId,
});
}
}