From 01390ebb5b1485ed76d41c9b647350cc8f17417c Mon Sep 17 00:00:00 2001 From: Antigravity Date: Thu, 7 May 2026 22:47:57 +0000 Subject: [PATCH] fix: header sticky uses bg-background (paper color), sort label hardcoded fallback, border-b added --- memento-note/components/home-client.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/memento-note/components/home-client.tsx b/memento-note/components/home-client.tsx index bf03434..88d55ca 100644 --- a/memento-note/components/home-client.tsx +++ b/memento-note/components/home-client.tsx @@ -361,7 +361,7 @@ export function HomeClient({ initialNotes, initialSettings }: HomeClientProps) { <>

@@ -387,7 +387,9 @@ export function HomeClient({ initialNotes, initialSettings }: HomeClientProps) { title={t('sidebar.sortOrder') || 'Sort order'} > - {sortLabels[sortOrder]} + + {sortOrder === 'newest' ? 'Plus récentes' : sortOrder === 'oldest' ? 'Plus anciennes' : 'A → Z'} + {showSortMenu && (