Skip to content

Commit 6a69274

Browse files
committed
Add: Add color for critical severities to charts
With this change critical severities in charts will get the desired color.
1 parent 554b9b5 commit 6a69274

File tree

1 file changed

+3
-1
lines changed
  • src/web/components/dashboard/display

1 file changed

+3
-1
lines changed

src/web/components/dashboard/display/Utils.jsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
MEDIUM,
1717
HIGH,
1818
NA,
19+
CRITICAL,
1920
} from 'web/utils/severity';
2021
import Theme from 'web/utils/Theme';
2122

@@ -51,7 +52,7 @@ export const activeDaysColorScale = scaleOrdinal()
5152
]);
5253

5354
export const riskFactorColorScale = scaleOrdinal()
54-
.domain([ERROR, DEBUG, FALSE_POSITIVE, NA, LOG, LOW, MEDIUM, HIGH])
55+
.domain([ERROR, DEBUG, FALSE_POSITIVE, NA, LOG, LOW, MEDIUM, HIGH, CRITICAL])
5556
.range([
5657
'#800000',
5758
'#008080',
@@ -61,6 +62,7 @@ export const riskFactorColorScale = scaleOrdinal()
6162
Theme.severityClassLow,
6263
Theme.severityClassMedium,
6364
Theme.severityClassHigh,
65+
Theme.severityClassCritical,
6466
]);
6567

6668
export const vulnsByHostsColorScale = scaleLinear()

0 commit comments

Comments
 (0)