feat(ServiceNow Node): Add support for work notes when updating an incident (#5791)

This commit is contained in:
Jon 2023-03-28 10:48:09 +01:00 committed by GitHub
parent 082c61701c
commit 1409f5d652
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -663,6 +663,13 @@ export const incidentFields: INodeProperties[] = [
default: 1, default: 1,
description: 'The urgency of the incident', description: 'The urgency of the incident',
}, },
{
displayName: 'Work Notes',
name: 'work_notes',
type: 'string',
default: '',
description: 'Work notes for the incident',
},
], ],
}, },
]; ];