From 9c092e90f1b1dcc8b3b46e966d680b0d30053d3b Mon Sep 17 00:00:00 2001 From: Yuri Karamian Date: Sat, 18 Apr 2026 02:13:15 +0200 Subject: [PATCH] Added a filled-star indicator to notes in Quick Access --- src/lib/components/NoteList.svelte | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/lib/components/NoteList.svelte b/src/lib/components/NoteList.svelte index a7915b7..b417c75 100644 --- a/src/lib/components/NoteList.svelte +++ b/src/lib/components/NoteList.svelte @@ -1101,6 +1101,11 @@ {/if} + {#if $viewMode !== 'quickaccess' && $quickAccessPaths.includes(note.relative_path)} + + + + {/if} {note.meta.title} {#if getNotebookPath(note)} @@ -1115,6 +1120,11 @@ {/if} + {#if $viewMode !== 'quickaccess' && $quickAccessPaths.includes(note.relative_path)} + + + + {/if} {note.meta.title}
{note.preview}
@@ -1632,6 +1642,11 @@ flex-shrink: 0; } + .quickaccess-icon { + color: var(--text-accent); + flex-shrink: 0; + } + .note-preview { font-size: 0.85em; color: var(--text-tertiary);