mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-23 11:44:06 -08:00
🐛 Fix custom fields for Jira Server (#2347)
This commit is contained in:
parent
3898b86cc9
commit
2e49c4c1cf
|
@ -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,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue