mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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) {
|
for (const category of categories) {
|
||||||
returnData.push({
|
returnData.push({
|
||||||
name: category.displayName as string,
|
name: category.displayName as string,
|
||||||
value: category.id as string,
|
value: category.displayName as string,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return returnData;
|
return returnData;
|
||||||
|
|
Loading…
Reference in a new issue