From 2a3546edd54d95382974d47630eaf29daad1180b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 19 Feb 2025 19:27:04 +0200 Subject: [PATCH] feat(client/tasks): display completed tasks --- src/public/app/widgets/type_widgets/task_list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/widgets/type_widgets/task_list.ts b/src/public/app/widgets/type_widgets/task_list.ts index 0f71092e9..95ffa5bf9 100644 --- a/src/public/app/widgets/type_widgets/task_list.ts +++ b/src/public/app/widgets/type_widgets/task_list.ts @@ -59,7 +59,7 @@ const TPL = ` function buildTask(task: FTask) { return `\
  • - ${task.title} + ${task.title}
  • `; }