feat(budget): further improvements
Some checks failed
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Failing after 1m11s

This commit is contained in:
2026-01-03 20:53:56 +01:00
parent cee01c9a29
commit 029c01cd32
5 changed files with 155 additions and 97 deletions

View File

@@ -8,18 +8,3 @@ document.addEventListener("DOMContentLoaded", () => {
});
})
htmx.on("htmx:afterSwap", () => {
dialogs = dialogContainer.getElementsByClassName("openDialogModal");
Array.from(dialogs).forEach((dialog) => {
dialog.showModal()
// buttons = dialog.getElementsByClassName("closeModalDialog");
// Array.from(buttons).forEach((button) => button.addEventListener("click", closeModalDialog))
})
});
// function closeModalDialog(e) {
// e.preventDefault();
// console.log(e)
// e.target.close()
// }