Skip to content

Commit

Permalink
fix(Microsoft Outlook Node): Fix issue with category not correctly ap…
Browse files Browse the repository at this point in the history
…plying (#6583)
  • Loading branch information
Joffcom authored Jul 17, 2023
1 parent 91a052e commit fc8ed55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fc8ed55

Please sign in to comment.