From 11f38c23e8e2c983d6582f735121be631f8a4e74 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Sun, 29 Dec 2024 13:53:21 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20adjust=20impact=20values=20that?= =?UTF-8?q?=20are=20mapped=20to=20ratings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- explorer/impact.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/explorer/impact.go b/explorer/impact.go index f2ee9e1e03..cb2b2efb5d 100644 --- a/explorer/impact.go +++ b/explorer/impact.go @@ -14,10 +14,10 @@ import ( // Impact represents severity rating scale when impact is provided as human-readable string value var impactMapping = map[string]int32{ "none": 0, - "low": 10, - "medium": 40, - "high": 70, - "critical": 100, + "low": 20, + "medium": 55, + "high": 80, + "critical": 95, } func (v *Impact) HumanReadable() string {