diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index feed856..39b830d 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 🐛 Bug Fixes - Date grouping now correctly groups tasks on the same day together regardless of whether they have times +- Fixed an issue where the task content would be rendered incorrectly the task was edited and the query refreshed ## v2.3.0 (2025-12-06) diff --git a/plugin/src/ui/query/task/Task.tsx b/plugin/src/ui/query/task/Task.tsx index 5a974ec..98e3c01 100644 --- a/plugin/src/ui/query/task/Task.tsx +++ b/plugin/src/ui/query/task/Task.tsx @@ -83,7 +83,11 @@ export const Task: React.FC = ({ tree }) => {
- + {shouldRenderDescription && }
@@ -156,7 +160,7 @@ const DescriptionRenderer: React.FC = ({ content }) => return (
{renderFullMarkdown ? ( - + ) : ( {content.split("\n")[0]}