fix: links not being clickable due to href attribute not being allowed

This commit is contained in:
SauceyRed 2025-07-13 20:47:55 +02:00
parent 926a751e0c
commit 047fe5e833
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7

View file

@ -97,7 +97,7 @@ onMounted(async () => {
], ],
ALLOW_DATA_ATTR: false, ALLOW_DATA_ATTR: false,
ALLOW_SELF_CLOSE_IN_ATTR: false, ALLOW_SELF_CLOSE_IN_ATTR: false,
ALLOWED_ATTR: [] ALLOWED_ATTR: ["href"]
}); });
console.log("adding listeners") console.log("adding listeners")
await nextTick(); await nextTick();