+reihen edit, personen edit

This commit is contained in:
Simon Martens
2026-01-09 13:22:23 +01:00
parent 5b75456439
commit 2d7751b4cb
14 changed files with 774 additions and 43 deletions

View File

@@ -0,0 +1,10 @@
export class EditPage extends HTMLElement {
connectedCallback() {
setTimeout(() => {
const form = this.querySelector("form");
if (form && typeof window.FormLoad === "function") {
window.FormLoad(form);
}
}, 0);
}
}