From 13cec807a2ffad4291c343930fb56e4d1466d67e Mon Sep 17 00:00:00 2001 From: Iris DevOps Date: Fri, 26 Jun 2026 18:07:11 +0200 Subject: [PATCH] Add create task modal --- public/app.js | 86 ++++++++++++++++++++++++++++++----------------- public/index.html | 4 +-- public/styles.css | 32 ++++++++---------- server.js | 2 +- 4 files changed, 73 insertions(+), 51 deletions(-) diff --git a/public/app.js b/public/app.js index c810c51..06c45fe 100644 --- a/public/app.js +++ b/public/app.js @@ -1,5 +1,11 @@ const states = ["Backlog", "In Progress", "Review", "Done"]; -const priorities = ["Low", "Normal", "High", "Urgent"]; +const priorities = ["Low", "Normal", "Medium", "High", "Urgent"]; +const assignees = [ + { value: "bao", label: "Bao" }, + { value: "maxi", label: "Maxi" }, + { value: "luna", label: "Luna" }, + { value: "iris", label: "Iris" } +]; const app = document.querySelector("#app"); const state = { @@ -132,10 +138,9 @@ function boardView() { OpenClaw ${connected ? "verbunden" : "pruefen"} -
- - -
+
+ +
${states.map((name) => column(name)).join("")}
@@ -186,23 +191,23 @@ function taskDialog() { -