This commit is contained in:
2026-02-14 18:25:12 +01:00
parent e0e8e88276
commit c3b80cffdc
+1 -1
View File
@@ -38,7 +38,7 @@ const layoutTmpl = `
</main>
<script>
document.addEventListener('click', function(e) {
if (e.target.closest('a, button, .btn, input, select, textarea')) return;
if (e.target.closest('a, button, .btn, input, select, textarea, .stack-actions, .stack-detail-actions')) return;
var card = e.target.closest('[data-href]');
if (card) window.location.href = card.dataset.href;
});