We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e2d5e commit 58d0904Copy full SHA for 58d0904
src/Task/Occurrence.ts
@@ -77,8 +77,7 @@ export class Occurrence {
77
// not make sense to pick the scheduled date over the start date because
78
// the scheduled date will be deleted in the newly created task. So if
79
// this setting is enabled, we favour start date over scheduled date:
80
- datesInPriorityOrder.push(this.startDate);
81
- datesInPriorityOrder.push(this.scheduledDate);
+ return [this.dueDate, this.startDate, this.scheduledDate];
82
} else {
83
datesInPriorityOrder.push(this.scheduledDate);
84
datesInPriorityOrder.push(this.startDate);
0 commit comments