diff --git a/htdocs/assets/js/keybinding-config.js b/htdocs/assets/js/keybinding-config.js index 5b8962a..2642fdc 100644 --- a/htdocs/assets/js/keybinding-config.js +++ b/htdocs/assets/js/keybinding-config.js @@ -17,7 +17,9 @@ async function redirectToURL(item) { try { const url = await getJsonDataset(item); window.open(url, '_blank'); - location.reload(); + if (!/Firefox/.test(navigator.userAgent)) { + location.reload(); + } } catch (error) { console.error('Error:', error); }