fix: number to percentage
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Beihao Zhou 2023-01-07 10:28:39 -05:00
parent 95ab1383ca
commit 58d64b62ef
1 changed files with 9 additions and 9 deletions

View File

@ -1,45 +1,45 @@
export const D1 = [
{
category: "CS",
value: 88,
value: 83.8,
},
{
category: "CS/BBA",
value: 12,
value: 11.4,
},
{
category: "CFM",
value: 5,
value: 4.7,
},
];
export const D2 = [
{
category: "Man",
value: 72,
value: 68.6,
},
{
category: "Woman",
value: 29,
value: 27.6,
},
{
category: "Gender non-conforming",
value: 4,
value: 3.8,
},
];
export const D3 = [
{
category: "She/Her/Her",
value: 31,
value: 30.0,
},
{
category: "He/Him/His",
value: 73,
value: 68.2,
},
{
category: "They/Them/Their",
value: 3,
value: 2.8,
},
];