fix: make run rows clickable and limit dashboard runs

This commit is contained in:
Anton
2026-05-07 16:23:39 +03:00
parent c97ced52b4
commit 52c5cc1af1
6 changed files with 24 additions and 6 deletions

View File

@@ -59,6 +59,9 @@
applyColumns(columns);
});
});
}
function setupClickableRows() {
document.querySelectorAll("[data-row-href]").forEach((row) => {
row.addEventListener("click", (event) => {
if (event.target.closest("a, button, input, select, label")) return;
@@ -107,5 +110,6 @@
}
setupColumns();
setupClickableRows();
setupProgress();
})();