Skip to content

Commit

Permalink
fix: fixed hours burnup translations
Browse files Browse the repository at this point in the history
  • Loading branch information
celsoMartins committed Dec 2, 2024
1 parent b79cdf6 commit 02ee6ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/spa/src/pages/Projects/Charts/ProjectHoursBurnup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ const ProjectHoursBurnup = ({ project }: ProjectBurnupProps) => {

return (
<ChartGridItem
title={t("chartsTab.projectCharts.hoursBurnupChart", {
title={t("chartsTab.projectCharts.hoursBurnUpChart", {
projectName: project.name,
})}
>
<LineChart
data={projectHoursBurnupChartData}
axisLeftLegend={t("chartsTab.projectCharts.hoursBurnupYLabel")}
axisLeftLegend={t("chartsTab.projectCharts.hoursBurnUpYLabel")}
props={{
enableSlices: "x",
sliceTooltip: ({ slice }: SliceTooltipProps) => (
Expand Down

0 comments on commit 02ee6ed

Please sign in to comment.