We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a01a2 commit 0ca289dCopy full SHA for 0ca289d
src/modules/tasks/TaskStore.ts
@@ -172,8 +172,10 @@ export default class TaskStore {
172
173
if (Array.isArray(this.tasks[projectId])) {
174
this.checkTasksRecursive(this.tasks[projectId], taskIds, markExpanded);
175
+
176
+ this.tasks[projectId] = this.tasks[projectId].slice();
177
+ this.tasksService.save(this.tasks);
178
}
- this.tasksService.save(this.tasks);
179
180
181
private getTaskKeysByCondition(
0 commit comments