Skip to content

Commit f11c29b

Browse files
Merge pull request #7416 from deutschebank/db-contrib/waltz-7415-new-investment-labels
Db contrib/waltz 7415 new investment labels
2 parents f443289 + abb1d1a commit f11c29b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

waltz-ng/client/applications/components/apps-by-investment-pie.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ const DEFAULT_SIZE = 80;
3535
const investmentLabels = {
3636
"R" : "Disinvest",
3737
"A" : "Maintain",
38-
"G" : "Invest"
38+
"G" : "Invest",
39+
"N": "Disinvest - Non-Certified",
40+
"C": "Disinvest - Certified"
3941
};
4042

4143

waltz-ng/client/common/colors.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ export const waltzFontColor = "#332B23";
7373
export const waltzLinkColor = "#2C369D";
7474

7575
export const ragColorScale = scaleOrdinal()
76-
.domain(["R", "A", "G", "Z", "X"])
77-
.range([red, amber, green, grey, lightGrey]);
76+
.domain(["R", "A", "G", "Z", "X", "N", "C"])
77+
.range([red, amber, green, grey, lightGrey, red, red]);
7878

7979

8080
export const capabilityColorScale = ragColorScale;

0 commit comments

Comments
 (0)