Skip to content

Commit

Permalink
Merge pull request #100 from bitovi/96-localstorage
Browse files Browse the repository at this point in the history
no longer show items with missing dates in the gantt chart
  • Loading branch information
justinbmeyer authored Aug 27, 2024
2 parents 63f60f1 + 168b5a1 commit 63618c3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion public/dist/connect-main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/dist/connect-main.min.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion public/dist/hosted-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -55974,8 +55974,9 @@ class GanttTimeline extends canStacheElement {
get rows() {
const { firstDay, lastDay } = this.quartersAndMonths;
const totalTime = (lastDay - firstDay);
const issuesWithDates = this.issues.filter( issue => issue.dateData.rollup.due );
const rows = calculate({
issues: this.issues,
issues: issuesWithDates,
firstDay,
totalTime,
makeElementForIssue: function(release){
Expand Down
2 changes: 1 addition & 1 deletion public/dist/hosted-main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/dist/hosted-main.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/dist/hosted-main.min.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion public/gantt-timeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ export class GanttTimeline extends StacheElement {
get rows() {
const { firstDay, lastDay } = this.quartersAndMonths;
const totalTime = (lastDay - firstDay);
const issuesWithDates = this.issues.filter( issue => issue.dateData.rollup.due )
const rows = calculate({
issues: this.issues,
issues: issuesWithDates,
firstDay,
totalTime,
makeElementForIssue: function(release){
Expand Down

0 comments on commit 63618c3

Please sign in to comment.