Skip to content

Commit

Permalink
Change Reimbursement values to dollars
Browse files Browse the repository at this point in the history
  • Loading branch information
Peyton-McKee committed Jan 21, 2025
1 parent 050ded7 commit eca3e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/backend/src/utils/statistics.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ export const getGraphDataForReimbursementRequestsByProject = async (
}

return {
value,
value: value / 100,
label: wbsNamePipe({ wbsNum: project.wbsElement, name: project.wbsElement.name })
};
});
Expand Down Expand Up @@ -456,7 +456,7 @@ export const getGraphDataForReimbursementRequestsByTeam = async (
}

return {
value,
value: value / 100,
label: team.teamName
};
});
Expand Down Expand Up @@ -506,7 +506,7 @@ export const getGraphDataForReimbursementRequestsByDivision = async (
}

return {
value,
value: value / 100,
label: division.name
};
});
Expand Down

0 comments on commit eca3e8d

Please sign in to comment.