From 9ed075b6757d4ad945235fa460e5ad1bbd869f0e Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 19 Feb 2025 20:02:43 +0200 Subject: [PATCH] fix(tasks): task list not clearing properly --- 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 95ffa5bf9..861ebe634 100644 --- a/src/public/app/widgets/type_widgets/task_list.ts +++ b/src/public/app/widgets/type_widgets/task_list.ts @@ -108,7 +108,7 @@ export default class TaskListWidget extends TypeWidget { return; } - this.$taskContainer.clearQueue(); + this.$taskContainer.html(""); const tasks = await froca.getTasks(); for (const task of tasks) {