gantt-task-react-powern 0.4.75 → 0.4.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1563,7 +1563,7 @@ var taskXCoordinate = function taskXCoordinate(xDate, dates, columnWidth) {
1563
1563
  }) - 1;
1564
1564
 
1565
1565
  if (index < 0) {
1566
- if (dates[dates.length - 1].getTime() < xDate.getTime()) {
1566
+ if (dates[dates.length - 1].getTime() <= xDate.getTime()) {
1567
1567
  return dates.length * columnWidth;
1568
1568
  } else {
1569
1569
  return 0;