Merge pull request #7084 from opf/fix/29619-Follows-precedes-relationship-arrow-in-Gantt-chart-not-correctly-connected

[29619] Follows-precedes relationship arrow in Gantt chart not correctly connected

[ci skip]
pull/7090/head
Oliver Günther 6 years ago committed by GitHub
commit 62fdda1ee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      frontend/src/app/components/wp-table/timeline/global-elements/wp-timeline-relations.directive.ts

@ -63,7 +63,7 @@ function newSegment(vp:TimelineViewParameters,
);
// segment.style.backgroundColor = color;
segment.style.top = ((yPosition * 41) + top) + 'px';
segment.style.top = ((yPosition * 40) + top) + 'px';
segment.style.left = left + 'px';
segment.style.width = width + 'px';
segment.style.height = height + 'px';

Loading…
Cancel
Save