diff --git a/src/backend/src/utils/statistics.utils.ts b/src/backend/src/utils/statistics.utils.ts index 8f5094b755..ff26df23bc 100644 --- a/src/backend/src/utils/statistics.utils.ts +++ b/src/backend/src/utils/statistics.utils.ts @@ -402,7 +402,7 @@ export const getGraphDataForReimbursementRequestsByProject = async ( } return { - value, + value: value / 100, label: wbsNamePipe({ wbsNum: project.wbsElement, name: project.wbsElement.name }) }; }); @@ -456,7 +456,7 @@ export const getGraphDataForReimbursementRequestsByTeam = async ( } return { - value, + value: value / 100, label: team.teamName }; }); @@ -506,7 +506,7 @@ export const getGraphDataForReimbursementRequestsByDivision = async ( } return { - value, + value: value / 100, label: division.name }; });