[25471] Draw empty due date until today in timeline

https://community.openproject.com/wp/25471
pull/7098/head
Oliver Günther 6 years ago
parent bf9d403465
commit b504da25ab
No known key found for this signature in database
GPG Key ID: A3A8BDAD7C0C552C
  1. 3
      frontend/src/app/components/wp-table/timeline/cells/timeline-cell-renderer.ts

@ -219,7 +219,8 @@ export class TimelineCellRenderer {
// only start date, fade out bar to the right
if (_.isNaN(due.valueOf()) && !_.isNaN(start.valueOf())) {
due = start.clone();
// Set due date to today
due = moment();
bar.style.backgroundImage = `linear-gradient(90deg, rgba(255,255,255,0) 0%, #F1F1F1 100%)`;
}

Loading…
Cancel
Save