mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
🐛 Fix incident urgency and impact values (#2433)
This commit is contained in:
parent
c574a0d20d
commit
f2c8027e25
|
@ -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: '',
|
||||
|
|
Loading…
Reference in a new issue