gantt-task-react-powern 0.4.54 → 0.4.56

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.
@@ -1219,7 +1219,7 @@ var drownPathAndTriangle = function drownPathAndTriangle(taskFrom, taskTo, rowHe
1219
1219
  } else if (taskTo.x1 > 0) taskToStart = taskTo.x1;else if (taskTo.actualx1 > 0) taskToStart = taskTo.actualx1;else taskToStart = 0;
1220
1220
 
1221
1221
  if (taskFrom.x2 > 0 && taskFrom.actualx2 > 0) {
1222
- taskFromEnd = Math.min(taskFrom.x2, taskFrom.actualx2);
1222
+ taskFromEnd = Math.max(taskFrom.x2, taskFrom.actualx2);
1223
1223
  } else if (taskFrom.x2 > 0) taskFromEnd = taskFrom.x2;else if (taskFrom.actualx2 > 0) taskFromEnd = taskFrom.actualx2;else taskFromEnd = 0;
1224
1224
 
1225
1225
  var indexCompare = taskFrom.index > taskTo.index ? -1 : 1;
@@ -1324,7 +1324,6 @@ var convertToBar = function convertToBar(task, index, dates, columnWidth, rowHei
1324
1324
  progressSelectedColor: barProgressSelectedColor
1325
1325
  }, task.styles);
1326
1326
 
1327
- console.debug(task);
1328
1327
  return _extends({}, task, {
1329
1328
  typeInternal: typeInternal,
1330
1329
  x1: x1,