fix: open maps in the same tab

This commit is contained in:
Vitaly Turovsky 2024-02-23 01:16:16 +03:00
commit d36bec02bf

View file

@ -48,7 +48,7 @@ function openURL (url, newTab = true) {
if (newTab) {
window.open(url, '_blank', 'noopener,noreferrer')
} else {
window.open(url)
window.open(url, '_self')
}
}