From 0b2aa723a6343bc90925e235aba18160f736793d Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 21 Oct 2023 14:07:39 +0200 Subject: [PATCH] feat(editor): open links when clicking on them --- src/components/input/editor/TipTap.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/editor/TipTap.vue b/src/components/input/editor/TipTap.vue index 9af963bcb..0a2af83e7 100644 --- a/src/components/input/editor/TipTap.vue +++ b/src/components/input/editor/TipTap.vue @@ -239,7 +239,7 @@ const editor = useEditor({ Typography, Underline, Link.configure({ - openOnClick: false, + openOnClick: true, validate: (href: string) => /^https?:\/\//.test(href), }), Table.configure({