gantt-lib 0.71.0 → 0.71.1
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4631,7 +4631,7 @@ var TaskListRow = React9.memo(
|
|
|
4631
4631
|
);
|
|
4632
4632
|
const isCollapsed = collapsedParentIds.has(task.id);
|
|
4633
4633
|
const getHierarchyLineColor = useCallback4((columnDepth) => {
|
|
4634
|
-
return columnDepth % 2 === 0 ? "var(--gantt-hierarchy-line-color)"
|
|
4634
|
+
return columnDepth % 2 === 0 ? "#93c5fd" : "var(--gantt-hierarchy-line-color)";
|
|
4635
4635
|
}, []);
|
|
4636
4636
|
const isPicking = selectingPredecessorFor != null;
|
|
4637
4637
|
const isSourceRow = isPicking && selectingPredecessorFor === task.id;
|