From f2c8027e25eb47db878bff5d97639a4e15b9db52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 19 Nov 2021 16:31:52 +0100 Subject: [PATCH] :bug: Fix incident urgency and impact values (#2433) --- .../nodes/ServiceNow/IncidentDescription.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts index 021a6e4983..5d5ce44656 100644 --- a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts @@ -186,7 +186,7 @@ export const incidentFields = [ options: [ { name: 'Low', - value: 1, + value: 3, }, { name: 'Medium', @@ -194,7 +194,7 @@ export const incidentFields = [ }, { name: 'High', - value: 3, + value: 1, }, ], default: '', @@ -240,7 +240,7 @@ export const incidentFields = [ options: [ { name: 'Low', - value: 1, + value: 3, }, { name: 'Medium', @@ -248,7 +248,7 @@ export const incidentFields = [ }, { name: 'High', - value: 3, + value: 1, }, ], default: '', @@ -590,7 +590,7 @@ export const incidentFields = [ options: [ { name: 'Low', - value: 1, + value: 3, }, { name: 'Medium', @@ -598,7 +598,7 @@ export const incidentFields = [ }, { name: 'High', - value: 3, + value: 1, }, ], default: '', @@ -654,7 +654,7 @@ export const incidentFields = [ options: [ { name: 'Low', - value: 1, + value: 3, }, { name: 'Medium', @@ -662,7 +662,7 @@ export const incidentFields = [ }, { name: 'High', - value: 3, + value: 1, }, ], default: '',