diff --git a/apps/app/components/core/sidebar/progress-chart.tsx b/apps/app/components/core/sidebar/progress-chart.tsx index b79b5fa89..bb3f7e059 100644 --- a/apps/app/components/core/sidebar/progress-chart.tsx +++ b/apps/app/components/core/sidebar/progress-chart.tsx @@ -80,6 +80,7 @@ const ProgressChart: React.FC = ({ issues, start, end }) => { tick={{ fontSize: "12px", fill: "#1f2937" }} tickSize={10} minTickGap={10} + allowDecimals={false} /> } /> = ({ month, issues, setMonth for (let i = 1; i <= weeks; i++) { data.push({ - week_in_month: i, + week_in_month: `Week ${i}`, completed_count: issues?.find((item) => item.week_in_month === i)?.completed_count ?? 0, }); } @@ -58,8 +58,8 @@ export const CompletedIssuesGraph: React.FC = ({ month, issues, setMonth
- - + + } />