Commit 22284ec3 authored by Mike Greiling's avatar Mike Greiling

ideal line should end at dueDate not maxDate in event that milestone goes overdue

parent 40e55bd0
......@@ -95,7 +95,7 @@ export default class BurndownChart {
// set our ideal line data
if (this.data.length > 1) {
const idealStart = this.data[0] || { date: this.startDate, value: 0 };
const idealEnd = { date: this.xMax, value: 0 };
const idealEnd = { date: this.dueDate, value: 0 };
this.idealData = [idealStart, idealEnd];
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment