gantt-task-react-powern 0.4.94 → 0.4.96
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 +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -0
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -5
package/dist/index.js
CHANGED
|
@@ -3394,6 +3394,7 @@ function getCriticalPaths(leafTasks) {
|
|
|
3394
3394
|
primaryLeaf = taskMap[primaryLeaf].next;
|
|
3395
3395
|
}
|
|
3396
3396
|
|
|
3397
|
+
console.debug(taskMap);
|
|
3397
3398
|
var secondaryLeaf;
|
|
3398
3399
|
var secondaryDuration = 0;
|
|
3399
3400
|
|
|
@@ -3432,6 +3433,7 @@ function computeCriticalPath(taskID, taskMap) {
|
|
|
3432
3433
|
var dependency = (_dependentTask$depend = dependentTask.dependencies) === null || _dependentTask$depend === void 0 ? void 0 : _dependentTask$depend.find(function (d) {
|
|
3433
3434
|
return d.id === taskID;
|
|
3434
3435
|
});
|
|
3436
|
+
console.debug(dependency);
|
|
3435
3437
|
if (!dependency) continue;
|
|
3436
3438
|
|
|
3437
3439
|
switch (dependency.type) {
|