From 047fe5e83395265d9ddae33831a5e23d0d9f1b8b Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Sun, 13 Jul 2025 20:47:55 +0200 Subject: [PATCH] fix: links not being clickable due to href attribute not being allowed --- components/Message.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Message.vue b/components/Message.vue index 2bcdcfc..e766ed9 100644 --- a/components/Message.vue +++ b/components/Message.vue @@ -97,7 +97,7 @@ onMounted(async () => { ], ALLOW_DATA_ATTR: false, ALLOW_SELF_CLOSE_IN_ATTR: false, - ALLOWED_ATTR: [] + ALLOWED_ATTR: ["href"] }); console.log("adding listeners") await nextTick();