no longoer showing tasks with "no index" flag in kanban view

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-08-25 23:22:16 +02:00
parent 0455c76479
commit cc89bada3a

View File

@@ -159,6 +159,7 @@
var json = await resp.json();
for (var task_id of Object.keys(json)) {
let task = json[task_id];
if (task.no_index) continue;
let state = task.status;
let owner = null;
let assignee = null;