From 6aa858e299f490ec9d7e262ef2d62fa92ad92528 Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Mon, 8 Jun 2026 10:53:05 +0200 Subject: [PATCH] improved range of states of tasks in easylist Signed-off-by: Stephan Richter --- frontend/src/routes/task/EasyList.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/task/EasyList.svelte b/frontend/src/routes/task/EasyList.svelte index 529cd98c..088be3bf 100644 --- a/frontend/src/routes/task/EasyList.svelte +++ b/frontend/src/routes/task/EasyList.svelte @@ -137,7 +137,7 @@ {t('state_open')} {#if sorted} {#each sorted as task} - {#if task.status == 20 && match(task)} + {#if task.status < 60 && task.status >= 20 && match(task)}
{task.name}