fix(Microsoft Outlook Node): Fix issue with category not correctly applying (#6583)

This commit is contained in:
Jon 2023-07-17 17:06:30 +01:00 committed by GitHub
parent 91a052e4c5
commit fc8ed55c0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;