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 CHANGED
@@ -4726,7 +4726,7 @@ var TaskListRow = import_react10.default.memo(
4726
4726
  );
4727
4727
  const isCollapsed = collapsedParentIds.has(task.id);
4728
4728
  const getHierarchyLineColor = (0, import_react10.useCallback)((columnDepth) => {
4729
- return columnDepth % 2 === 0 ? "var(--gantt-hierarchy-line-color)" : "#93c5fd";
4729
+ return columnDepth % 2 === 0 ? "#93c5fd" : "var(--gantt-hierarchy-line-color)";
4730
4730
  }, []);
4731
4731
  const isPicking = selectingPredecessorFor != null;
4732
4732
  const isSourceRow = isPicking && selectingPredecessorFor === task.id;