From b91b243432d7af7b1a37feac829f4fe99f2c91ef Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 23 Feb 2025 22:00:50 +0200 Subject: [PATCH] fix(tasks): selection contains spaces --- src/public/app/widgets/type_widgets/task_list.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/public/app/widgets/type_widgets/task_list.ts b/src/public/app/widgets/type_widgets/task_list.ts index 8211c5921..8a0131e16 100644 --- a/src/public/app/widgets/type_widgets/task_list.ts +++ b/src/public/app/widgets/type_widgets/task_list.ts @@ -61,10 +61,7 @@ function buildTasks(tasks: FTask[]) { let html = ''; for (const task of tasks) { - html += `\ -
  • - ${task.title} -
  • `; + html += `
  • ${task.title}
  • `; } return html;