Compare commits

...

2 Commits

Author SHA1 Message Date
StephanRichter 433ea6ddd3 Merge branch 'main' into dev
Build Docker Image / Clean-Registry (push) Successful in 5s
Build Docker Image / Docker-Build (push) Failing after 14m25s
2026-06-08 10:53:23 +02:00
StephanRichter 6aa858e299 improved range of states of tasks in easylist
Build Docker Image / Docker-Build (push) Successful in 3m47s
Build Docker Image / Clean-Registry (push) Successful in 6s
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-08 10:53:05 +02:00
+1 -1
View File
@@ -137,7 +137,7 @@
<legend>{t('state_open')}</legend> <legend>{t('state_open')}</legend>
{#if sorted} {#if sorted}
{#each sorted as task} {#each sorted as task}
{#if task.status == 20 && match(task)} {#if task.status < 60 && task.status >= 20 && match(task)}
<div href={`/task/${task.id}/view`} title={task.description.source} task_id={task.id} {onclick} {oncontextmenu} {ontouchstart} {ontouchend} onmousedown={ontouchstart} onmouseup={ontouchend} > <div href={`/task/${task.id}/view`} title={task.description.source} task_id={task.id} {onclick} {oncontextmenu} {ontouchstart} {ontouchend} onmousedown={ontouchstart} onmouseup={ontouchend} >
{task.name} {task.name}
</div> </div>