From 9be89203620445d49ff3429b718affd1440f2694 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 20 Jul 2026 11:23:57 -0400 Subject: [PATCH] links: clickable [[wiki-links]] on cards LinkedText now makes each [[link]] segment interactive: click (or Enter when focused) resolves the title and opens the target note, creating it first if it doesn't exist. Reuses the palette's /?open= open path. @click.stop / keydown.stop keep the surrounding card's click-to-open from also firing. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01FRgehjoz7Yv8LkUfADxACm --- frontend/src/components/LinkedText.vue | 35 +++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/LinkedText.vue b/frontend/src/components/LinkedText.vue index 7c10411..ce4cd11 100644 --- a/frontend/src/components/LinkedText.vue +++ b/frontend/src/components/LinkedText.vue @@ -1,16 +1,23 @@