Skip to content

Commit

Permalink
Fix bug with subtasks (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebrynes7 authored Sep 6, 2020
1 parent 5209cfb commit 204fff9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.2.1] - 2020-09-06

### 🐛 Bug Fixes

- Fixed an issue where subtasks would cause errors with sorting.

## [1.2.0] - 2020-09-05

### ✨ Features
Expand Down
2 changes: 1 addition & 1 deletion src/TaskList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</span>
{/if}
{#if todo.children.length != 0}
<svelte:self tasks={todo.children} {settings} {api} />
<svelte:self tasks={todo.children} {settings} {api} {sorting}/>
{/if}
</li>
{/each}
Expand Down

0 comments on commit 204fff9

Please sign in to comment.