mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix(Microsoft Outlook Node): Fix issue with category not correctly applying (#6583)
This commit is contained in:
parent
91a052e4c5
commit
fc8ed55c0d
|
@ -120,7 +120,7 @@ export class MicrosoftOutlook implements INodeType {
|
|||
for (const category of categories) {
|
||||
returnData.push({
|
||||
name: category.displayName as string,
|
||||
value: category.id as string,
|
||||
value: category.displayName as string,
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
|
|
Loading…
Reference in a new issue