mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix jiraSoftwareCloud fields.assignee
This commit is contained in:
parent
976e02efcc
commit
9fe1ca9696
|
@ -287,7 +287,7 @@ export class JiraSoftwareCloud implements INodeType {
|
|||
}
|
||||
if (additionalFields.assignee) {
|
||||
fields.assignee = {
|
||||
id: additionalFields.assignee as string,
|
||||
name: additionalFields.assignee as string,
|
||||
};
|
||||
}
|
||||
if (additionalFields.description) {
|
||||
|
@ -340,7 +340,7 @@ export class JiraSoftwareCloud implements INodeType {
|
|||
}
|
||||
if (updateFields.assignee) {
|
||||
fields.assignee = {
|
||||
id: updateFields.assignee as string,
|
||||
name: updateFields.assignee as string,
|
||||
};
|
||||
}
|
||||
if (updateFields.description) {
|
||||
|
|
Loading…
Reference in a new issue