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.
task-overdue
1 parent 204fff9 commit e3db86eCopy full SHA for e3db86e
CHANGELOG.md
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
## Unreleased
8
9
+## [1.2.2] - 2020-09-06
10
+
11
+### 🐛 Bug Fixes
12
13
+- Fixed an issue where the `task-overdue` status would disappear if a task above it was checked off.
14
15
## [1.2.1] - 2020-09-06
16
17
### 🐛 Bug Fixes
src/api.ts
@@ -103,7 +103,7 @@ export class Task {
103
return this.datetime.isBefore();
104
}
105
106
- return this.datetime.add(1, 'day').isBefore();
+ return this.datetime.clone().add(1, 'day').isBefore();
107
108
109
compareTo(other: Task, sorting_options: string[]): number {
0 commit comments