gantt-task-react-powern 0.6.16 → 0.6.17

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.
package/dist/index.js CHANGED
@@ -3678,14 +3678,6 @@ function getCriticalPaths(leafTasks) {
3678
3678
  }
3679
3679
  }
3680
3680
 
3681
- var printedList = taskChainList.map(function (elem) {
3682
- var newElem = _extends({}, elem);
3683
-
3684
- newElem.duration = Math.round(elem.duration / 86400000);
3685
- return newElem;
3686
- });
3687
- console.debug(printedList);
3688
-
3689
3681
  if (taskChainList.length > 0) {
3690
3682
  taskChainList.sort(function (a, b) {
3691
3683
  return b.duration - a.duration;