href can be null

This commit is contained in:
Chocobozzz 2024-06-21 14:05:13 +02:00
parent 79d6e93b03
commit 4ff7880584
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -40,7 +40,7 @@ export class PluginPagesComponent implements OnDestroy, AfterViewInit {
if (!a) return
// Get the href attribute set by the dev, not the one calculated by JS to detect if it's a relative/external link
const href = a.getAttribute('href')
const href = a.getAttribute('href') || ''
if (!a.target && href.startsWith('/')) {
event.preventDefault()