From 76da2450a4f2cc9ce6c7fc8229e25dc0a4b41e5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Mathieu?= Date: Tue, 9 Jun 2026 21:33:22 +0200 Subject: [PATCH] webui: implement pinned conversations support (#21387) * webui: implement pinned conversations support * webui: linter/prettier pass * Fix the unused handleMobileSidebarItemClick from the component. * the search should find pinned conversations as well Co-authored-by: Pascal --------- Co-authored-by: Pascal --- .../SidebarNavigation.svelte | 52 +++++++++++++++++-- .../SidebarNavigationConversationItem.svelte | 16 +++++- tools/ui/src/lib/services/database.service.ts | 16 ++++++ .../ui/src/lib/stores/conversations.svelte.ts | 39 +++++++++++++- tools/ui/src/lib/types/database.d.ts | 1 + 5 files changed, 117 insertions(+), 7 deletions(-) diff --git a/tools/ui/src/lib/components/app/navigation/SidebarNavigation/SidebarNavigation.svelte b/tools/ui/src/lib/components/app/navigation/SidebarNavigation/SidebarNavigation.svelte index ddaf4d5b87..1fa7722f24 100644 --- a/tools/ui/src/lib/components/app/navigation/SidebarNavigation/SidebarNavigation.svelte +++ b/tools/ui/src/lib/components/app/navigation/SidebarNavigation/SidebarNavigation.svelte @@ -1,7 +1,7 @@