Skip to content

Commit

Permalink
Prevent subtasks from disappearing; fixes #932
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed Apr 30, 2024
1 parent c051d20 commit 4a77bf3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Item/ItemContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ function checkCheckbox(stateManager: StateManager, title: string, checkboxIndex:
const check = match[2] === ' ' ? 'x' : ' ';
results.push(match[1] + check + match[3] + line.slice(match[0].length));
}
} else {
results.push(line);
}
count++;
return;
Expand Down

0 comments on commit 4a77bf3

Please sign in to comment.