From 27d9e7b154da61e304fd0d3c8cb694edd4884788 Mon Sep 17 00:00:00 2001 From: MrUnknownDE Date: Sun, 17 May 2026 21:25:57 +0200 Subject: [PATCH] fix: ip whois lookup forword --- frontend/app/router.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/router.js b/frontend/app/router.js index 4880c27..a363cd3 100644 --- a/frontend/app/router.js +++ b/frontend/app/router.js @@ -67,6 +67,7 @@ async function navigate(path, { push = true, search = '' } = {}) { // ── Intercept same-origin link clicks ─────────────────────────── document.addEventListener('click', e => { + if (e.defaultPrevented) return; const a = e.target.closest('a[href]'); if (!a) return; let url;