forked from github/plane
fix: don't allow decimal in the y axis of completed issues graph (#564)
This commit is contained in:
parent
e2eeec8f79
commit
c0a471e916
@ -60,7 +60,7 @@ export const CompletedIssuesGraph: React.FC<Props> = ({ month, issues, setMonth
|
||||
<LineChart data={data}>
|
||||
<CartesianGrid stroke="#e2e2e2" />
|
||||
<XAxis dataKey="week_in_month" />
|
||||
<YAxis dataKey="completed_count" />
|
||||
<YAxis dataKey="completed_count" allowDecimals={false} />
|
||||
<Tooltip content={<CustomTooltip />} />
|
||||
<Line
|
||||
type="monotone"
|
||||
|
Loading…
Reference in New Issue
Block a user