Revert "Why opening on a new tab?"

This reverts commit 839e0bc32c.
This commit is contained in:
2025-07-28 10:08:59 +02:00
parent 839e0bc32c
commit 49d0a7fad4
2 changed files with 2 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ function populateSearchResults(results, selectedOption) {
div.addEventListener('click', () => {
const url = `fermata.html?palina=${encodeURIComponent(item.palina)}&targetID=${encodeURIComponent(item.targetID)}&selectedOption=${encodeURIComponent(selectedOption)}`;
window.open(url, '_self');
window.open(url, '_blank');
});
searchResultsContainer.appendChild(div);