From 204fff971e5b43bb4b9e0c7e346378ce76414cff Mon Sep 17 00:00:00 2001 From: Jamie Brynes Date: Sun, 6 Sep 2020 15:04:43 +0100 Subject: [PATCH] Fix bug with subtasks (#26) --- CHANGELOG.md | 6 ++++++ src/TaskList.svelte | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c67e861..232205f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/TaskList.svelte b/src/TaskList.svelte index d322e3b..96174f6 100644 --- a/src/TaskList.svelte +++ b/src/TaskList.svelte @@ -66,7 +66,7 @@ {/if} {#if todo.children.length != 0} - + {/if} {/each}