go-htmx-gsd #1

Merged
arthur merged 558 commits from go-htmx-gsd into main 2026-05-23 15:16:44 +00:00
Showing only changes of commit 131c9fd6b3 - Show all commits

View file

@ -51,7 +51,7 @@ templ KanbanBoard(tabloID uuid.UUID, csrfToken string, tasks []sqlc.Task) {
group: "kanban",
animation: 150,
handle: ".task-drag-handle",
draggable: ".task-card",
draggable: ".task-card-zone",
ghostClass: "bg-slate-100",
chosenClass: "opacity-50",
onEnd: function() {
@ -67,7 +67,6 @@ templ KanbanBoard(tabloID uuid.UUID, csrfToken string, tasks []sqlc.Task) {
form.appendChild(colInp);
});
});
form.dispatchEvent(new Event("submit", { bubbles: true }));
htmx.trigger(form, "submit");
}
});