File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,10 @@ export class Occurrence {
103
103
const hasStartDate = this . startDate !== null ;
104
104
const hasDueDate = this . dueDate !== null ;
105
105
const canRemoveScheduledDate = hasStartDate || hasDueDate ;
106
- const shouldDropScheduledDate = removeScheduledDate && canRemoveScheduledDate ;
106
+ const shouldRemoveScheduledDate = removeScheduledDate && canRemoveScheduledDate ;
107
107
108
108
const startDate = this . nextOccurrenceDate ( this . startDate , nextReferenceDate ) ;
109
- const scheduledDate = shouldDropScheduledDate
109
+ const scheduledDate = shouldRemoveScheduledDate
110
110
? null
111
111
: this . nextOccurrenceDate ( this . scheduledDate , nextReferenceDate ) ;
112
112
const dueDate = this . nextOccurrenceDate ( this . dueDate , nextReferenceDate ) ;
You can’t perform that action at this time.
0 commit comments