From 53bcec602d110197c47d6a4b90d25871a86e71be Mon Sep 17 00:00:00 2001 From: perf3ct Date: Sun, 3 Aug 2025 20:22:30 +0000 Subject: [PATCH] feat(quick_search): result titles are now aligned, inline with result text --- apps/client/src/widgets/quick_search.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/quick_search.ts b/apps/client/src/widgets/quick_search.ts index 5e68610ad..0d4668feb 100644 --- a/apps/client/src/widgets/quick_search.ts +++ b/apps/client/src/widgets/quick_search.ts @@ -236,7 +236,10 @@ export default class QuickSearchWidget extends BasicWidget { // Build the display HTML with content snippet below the title let itemHtml = `
-
${result.highlightedNotePathTitle}
`; +
+ + ${result.highlightedNotePathTitle} +
`; // Add content snippet below the title if available if (result.highlightedContentSnippet) {