Merge branch 'step5' into web-dashboard

# Conflicts:
#	src/web/static/app.css
#	src/web/static/app.js
This commit is contained in:
2026-09-03 17:50:02 +00:00
9 changed files with 2857 additions and 3 deletions
+8
View File
@@ -56,4 +56,12 @@ document.querySelectorAll("table[data-filter]").forEach((table) => {
row.hidden = needle !== "" && !row.textContent.toLowerCase().includes(needle);
});
});
||||||| 849231e
/* step 5: settings — "reset to default" fills the field with its default */
document.addEventListener("click", (event) => {
const button = event.target.closest("button[data-reset]");
if (!button) return;
const input = document.getElementById(button.dataset.reset);
if (!input) return;
input.value = button.dataset.default;
});