From d4c09fb76d503acf0e7a06f2748ce71992948cbd Mon Sep 17 00:00:00 2001 From: LuBeDa Date: Tue, 11 Aug 2026 11:23:13 +0200 Subject: [PATCH 1/2] Show full note path on search result hover Search rows carried two nested tooltips (note name, folder), which meant hovering the text -- where the pointer usually lands -- showed the name rather than where the note lives. Move the tooltip to the row and bind it to note.path, and drop the inner bindings so they no longer shadow it. The path already contains both the name and the folder. Co-Authored-By: Claude Opus 5 --- frontend/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 0bc7681..c90c2f2 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1944,9 +1944,10 @@ class="hover-accent px-2 py-1.5 text-sm cursor-pointer mb-1" :class="{'active': currentNote === note.path}" :style="currentNote === note.path ? 'background-color: var(--accent-light); color: var(--accent-primary);' : 'color: var(--text-primary);'" + :title="note.path" > -
-
+
+
From ca38f7cb61e4ef21480a4865ed902fe5d7990da5 Mon Sep 17 00:00:00 2001 From: LuBeDa Date: Wed, 12 Aug 2026 12:06:31 +0200 Subject: [PATCH 2/2] Show path on hover in tag-filtered notes list The tag panel renders the same searchResults list, so give its rows the same tooltip as the search panel rather than the bare note name. Co-Authored-By: Claude Opus 5 --- frontend/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index c90c2f2..1983a1b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2046,7 +2046,7 @@ :class="{'active': currentNote === note.path}" :style="currentNote === note.path ? 'background-color: var(--accent-light); color: var(--accent-primary);' : 'color: var(--text-primary);'" > - +